diff --git a/.gitignore b/.gitignore
index a7f7885..4f0f6ef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,4 +22,6 @@ docs/_build/
htmlcov/
.coverage
.coverage.*
-*,cover
\ No newline at end of file
+*,cover
+logs/*
+!logs/sample.log
\ No newline at end of file
diff --git a/Controllers/CIBILController.py b/Controllers/CIBILController.py
new file mode 100644
index 0000000..cc7a22c
--- /dev/null
+++ b/Controllers/CIBILController.py
@@ -0,0 +1,92 @@
+from flask import render_template
+
+from services.dbservice import DbService
+from flask import Response, request
+from flask_restful import Resource,reqparse
+from services.utilityservices import sendRestResponse
+from services.CibilBusinessOperationService import CibilBusinessOperationService
+from flask_restful_swagger import swagger
+import json
+
+#this one for sample of individual modules/components in flask
+class CIBIL(Resource):
+
+ @swagger.operation(
+ notes='This API is entry point of Credit Bureau Summary of single applicant',
+ responseClass='None',
+ nickname='CIBIL Single Applicant Credit Bureau Summary API',
+ parameters=[
+ {
+ "name": "reference_number",
+ "description": "member reference number or applicant individual id",
+ "required": True,
+ "allowMultiple": False,
+ "dataType": 'int',
+ "paramType": "query"
+ },
+ {
+ "name": "los_id",
+ "description": "LOSID",
+ "required": True,
+ "allowMultiple": False,
+ "dataType": 'int',
+ "paramType": "query"
+ }
+ ],
+ responseMessages=[
+ {
+ "code": 200,
+ "message": "Process Started...!"
+ },
+ {
+ "code": 404,
+ "message": "Some Err"
+ }
+ ]
+ )
+
+
+ def get(self):
+ return_data = []
+ los_id = request.args.get('los_id') if request.args.get('los_id') is not None else None
+ reference_number = request.args.get('reference_number') if request.args.get('reference_number') is not None else None
+ cibil_type = request.args.get('cibil_type') if request.args.get('cibil_type') is not None and request.args.get('cibil_type') in ['1','2'] else None # consumer = 1,commercial = 2
+ output_type = request.args.get('output_type') if request.args.get('los_id') is not None else None
+ # print(output_type,'--',type(output_type))
+ # print(request.args.get('cibil_type') == 2)
+ # print(cibil_type,request.args.get('cibil_type'))
+ action = request.args.get('action') if request.args.get('action') is not None and request.args.get('action') in ['1','2','3'] else None
+ # print(request.args.get('action') in [1,2,3])
+ # print(action,request.args.get('action'))
+ if los_id == None or reference_number == None or cibil_type == None or action == None:
+ return sendRestResponse(404,{'msg':'insufficient/invalid params'})
+ if int(action) == 1:#active&closedloans
+ print('active&closed Loans-')
+ return_data = CibilBusinessOperationService.doCIBILActiveCloseLoansSummary(los_id,reference_number,cibil_type)
+ return sendRestResponse(200,{'msg':'success','data':return_data})
+
+ elif int(action) == 2:#sanctioned loans summary
+ if output_type in ['1','2']:output_type = int(output_type)
+ else:return sendRestResponse(404,{'msg':'insufficient/invalid params'})
+ print('sanctioned loans summary')
+ return_data = CibilBusinessOperationService.doCIBILSanctionedLoansSummary(los_id,reference_number,cibil_type,output_type)
+ return sendRestResponse(200,{'msg':'success','data':return_data})
+
+ elif int(action) == 3:#enquiry summary
+ print('enquiry summary')
+ if output_type in ['1','2']:output_type = int(output_type)
+ else:return sendRestResponse(404,{'msg':'insufficient/invalid params'})
+ return_data = CibilBusinessOperationService.doCIBILEnquirySummary(los_id,reference_number,cibil_type,output_type)
+ return sendRestResponse(200,{'msg':'success','data':return_data})
+
+ else:
+ return sendRestResponse(200,{'msg':'success','data':return_data})
+
+
+ # raise Exception('manual stop')
+ # print('cool')
+ # CibilBusinessOperationServiceObj = CibilBusinessOperationService()
+ # data = CibilBusinessOperationService.doConsumerCIBILOperations(member_reference_number)
+ # return render_template('about.html', name='ponniy')
+ return sendRestResponse(200,return_data)
+ # return sendRestResponse(200,{'msg':return_data})
\ No newline at end of file
diff --git a/Controllers/WorkingController.py b/Controllers/WorkingController.py
new file mode 100644
index 0000000..db9d0d1
--- /dev/null
+++ b/Controllers/WorkingController.py
@@ -0,0 +1,40 @@
+from services.dbservice import DbService
+from flask import Response, request
+from flask_restful import Resource,reqparse
+from services.utilityservices import sendRestResponse
+from flask_restful_swagger import swagger
+
+#this one for sample of individual modules/components in flask
+class WorkingController(Resource):
+
+ @swagger.operation(
+ notes='Test Implemetaion of swaagger UI API',
+ responseClass='None',
+ nickname='Test API1',
+ parameters=[
+ {
+ "name": "name",
+ "description": "blueprint object that needs to be added. YAML.",
+ "required": False,
+ "allowMultiple": False,
+ "dataType": 'string',
+ "paramType": "query"
+ }
+ ],
+ responseMessages=[
+ {
+ "code": 201,
+ "message": "Created. The URL of the created blueprint should be in the Location header"
+ },
+ {
+ "code": 405,
+ "message": "Invalid input"
+ }
+ ]
+ )
+
+ def get(self, id=100):
+ page = request.args
+ print(page)
+ # return Response({'msg':'Welcome'},status=200)
+ return sendRestResponse(200,{'msg':id})
\ No newline at end of file
diff --git a/Controllers/testclass.py b/Controllers/testclass.py
new file mode 100644
index 0000000..912eaf2
--- /dev/null
+++ b/Controllers/testclass.py
@@ -0,0 +1,11 @@
+class Test:
+ # def __init__(self):
+ # print('inir called')
+
+ def testFunction(self):
+ return 10 * 5
+
+ def testFunction2(self):
+ print(self)
+ self.testFunction()
+ return 10 * 50
\ No newline at end of file
diff --git a/Controllers/testcontroller.py b/Controllers/testcontroller.py
new file mode 100644
index 0000000..51578aa
--- /dev/null
+++ b/Controllers/testcontroller.py
@@ -0,0 +1,49 @@
+from services.dbservice import DbService
+from sqlalchemy.sql import text
+# from flask_sqlalchemy import SQLAlchemy
+# from app import db
+
+def testFunction():
+ return 10 * 10
+
+
+def testDBcon():
+ # conn = DbService.getDBConnection(DbService)
+ myDBservice = DbService();
+ conn = myDBservice.getDBConnection();
+ # print(conn)
+ cursor = conn.cursor()
+ # cursor.execute('SELECT * FROM charge_type')
+ cursor.execute('SELECT id,BDeatailsID ,MemberReferenceNumber ,EnquiryMemberUserID ,SubjectReturnCode ,EnquiryControlNumber ,DateTimeProcessed ,ConsumerNameField1 ,ConsumerNameField2 ,ConsumerNameField3 ,ConsumerNameField4 ,ConsumerNameField5 ,DateofBirth ,Gender ,DateofEntryforErrorCode ,ErrorSegmentTag ,ErrorCode ,DateofEntryforCIBILRemarksCode ,CIBILRemarks ,DateofEntryforErrorDisputeRemarksCode ,ErrorDisputeRemarksCode ,ErrorDisputeRemarksCode2 ,AccountType ,DateReportedAndCertified ,Occupation ,Income ,NetGrossIncomeIndicator ,MonthlyAnnualIncomeIndicator ,DateOfEntryforErrorCode1 ,ErrorCode1 ,DateOfEntryForCIBILRemarksCode1 ,CIBILRemarksCode ,DateOfEntryForErrorDisputeRemarksCode1 ,ErrorDisputeRemarksCode1 ,ATErrorDisputeRemarksCode1 ,ATErrorDisputeRemarksCode2 ,DateOfEntry ,DisputeRemarksLine ,EMailID ,AccountNumber FROM con_borrower_detail where MemberReferenceNumber = ?',['202201121036280000000'])
+ # where MemberReferenceNumber = 202201121036280000000"
+ # ,createdAt ,updatedAt ,createdby ,updatedby
+ data = [];
+ records = cursor.fetchall()
+ field_names = [i[0] for i in cursor.description]
+ print(field_names)
+ # print(records)
+ for i in records:
+ print('###### START #######')
+ print((i))
+ print('**************************************')
+ print(dict(zip(field_names,i)))
+ print('###### END #######')
+ data.append(dict(zip(field_names,i)))
+ # data.append(dict(i))
+
+ conn.close();
+ return data
+
+def testDBRaw():
+ # db = SQLAlchemy()
+ records = db.engine.execute("SELECT id,charge_type,charge_type_description,created_at,modified_at FROM charge_type")
+ data = [];
+ field_names = records.keys()
+ records = records.fetchall()
+ print(field_names)
+ for i in records:
+ print(i)
+ data.append(dict(i))
+ # print(result)
+ return data
+
\ No newline at end of file
diff --git a/Models/com_ac_history_and_dpd.py b/Models/com_ac_history_and_dpd.py
new file mode 100644
index 0000000..49fbd8a
--- /dev/null
+++ b/Models/com_ac_history_and_dpd.py
@@ -0,0 +1,13 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Com_ac_history_and_dpd(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ temp_id = db.Column(db.Integer, nullable = False)
+ ApplicationRefno = db.Column(db.Numeric, nullable = False)
+ BorrowerCurrentDetailsID = db.Column(db.Integer, nullable = False)
+ CFHistory24Monthsmonth = db.Column(db.DateTime, nullable = False)
+ CFHistory24MonthsACorDPD = db.Column(db.String, nullable = False)
+ CFHistory24MonthsOSAmount = db.Column(db.Numeric, nullable = False)
+
\ No newline at end of file
diff --git a/Models/com_borrower_profile.py b/Models/com_borrower_profile.py
new file mode 100644
index 0000000..4e39bc1
--- /dev/null
+++ b/Models/com_borrower_profile.py
@@ -0,0 +1,11 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Com_borrower_profile(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ temp_id = db.Column(db.Integer, nullable = False)
+ ApplicationRefno = db.Column(db.Numeric, nullable = False)
+ EnqInfoBorrowerName = db.Column(db.String, nullable = False)
+
+
\ No newline at end of file
diff --git a/Models/com_credit_facility_current_detail.py b/Models/com_credit_facility_current_detail.py
new file mode 100644
index 0000000..a880ece
--- /dev/null
+++ b/Models/com_credit_facility_current_detail.py
@@ -0,0 +1,55 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Com_credit_facility_current_detail(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ temp_id = db.Column(db.Integer, nullable = False)
+ ApplicationRefno = db.Column(db.Numeric, nullable = False)
+ CreditFacilityDetailsBorrowerSecMsg = db.Column(db.String, nullable = False)
+ CreditFacilityCDDerivative = db.Column(db.String, nullable = False)
+ CreditFacilityCDAccountNo = db.Column(db.String, nullable = False)
+ CreditFacilityCDcfSrNo = db.Column(db.String, nullable = False)
+ CreditFacilityCDcfType = db.Column(db.String, nullable = False)
+ CreditFacilityCDcfMember = db.Column(db.String, nullable = False)
+ CreditFacilityCDAssetCDPDueDpd = db.Column(db.String, nullable = False)
+ CreditFacilityCDStatus = db.Column(db.String, nullable = False)
+ CreditFacilityCDStatusDate = db.Column(db.DateTime, nullable = False)
+ CreditFacilityCDLstReportedDate = db.Column(db.DateTime, nullable = False)
+ CreditFacilityCDAmtCurrency = db.Column(db.String, nullable = False)
+ CreditFacilityCDAmtSanctionedAmt = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtSanctionedAmtDP = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtoutstandingBalance = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtmarkToMarket = db.Column(db.String, nullable = False)
+ CreditFacilityCDAmtOverdue = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtHighCredit = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtinstallmentAmt = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtSuitFiledAmt = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtLastRepaid = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtWrittenOFF = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtSettled = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtNaorc = db.Column(db.Numeric, nullable = False)
+ CreditFacilityCDAmtContrctCAsNPA = db.Column(db.String, nullable = False)
+ CreditFacilityCDAmtNAmtOfContracts = db.Column(db.String, nullable = False)
+ CreditFacilityCDDatesSanctionedDt = db.Column(db.DateTime, nullable = False)
+ CreditFacilityCDDatesLoanExpiryDt = db.Column(db.DateTime, nullable = False)
+ CreditFacilityCDDatesLoanRenewalDt = db.Column(db.DateTime, nullable = False)
+ CreditFacilityCDDatesSuitFiledDt = db.Column(db.DateTime, nullable = False)
+ CreditFacilityCDDatesWilfulDefault = db.Column(db.DateTime, nullable = False)
+ CreditFacilityCDODRepaymentFrequency = db.Column(db.String, nullable = False)
+ CreditFacilityCDODTenure = db.Column(db.Integer, nullable = False)
+ CreditFacilityCDODWAMPContracts = db.Column(db.String, nullable = False)
+ CreditFacilityCDODRestructingReason = db.Column(db.String, nullable = False)
+ CreditFacilityCDODABSecurityCoverage = db.Column(db.String, nullable = False)
+ CreditFacilityOverdueDetailsMsg = db.Column(db.String, nullable = False)
+ CreditFacilityOverdueDetailsDPD1to30Amt = db.Column(db.Numeric, nullable = False)
+ CreditFacilityOverdueDetailsDPD31to60amt = db.Column(db.Numeric, nullable = False)
+ CreditFacilityOverdueDetailsDPD61t090amt = db.Column(db.Numeric, nullable = False)
+ CreditFacilityOverdueDetailsDPD91to180amt = db.Column(db.Numeric, nullable = False)
+ CreditFacilityOverdueDetailsDPDabove180amt = db.Column(db.Numeric, nullable = False)
+ ChequeDDIFundsMsg = db.Column(db.String, nullable = False)
+ ChequeDDIFundsCD3monthcount = db.Column(db.Integer, nullable = False)
+ ChequeDDIFundsCD4to6monthcount = db.Column(db.Integer, nullable = False)
+ ChequeDDIFundsCD10to12monthcount = db.Column(db.Integer, nullable = False)
+ CFSecurityDetailsMsg = db.Column(db.String, nullable = False)
+ CreditFacilityGuarantorDVecMsg = db.Column(db.String, nullable = False)
\ No newline at end of file
diff --git a/Models/com_enquiry_detail.py b/Models/com_enquiry_detail.py
new file mode 100644
index 0000000..6a6cb13
--- /dev/null
+++ b/Models/com_enquiry_detail.py
@@ -0,0 +1,13 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Com_enquiry_detail(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ temp_id = db.Column(db.Integer, nullable = False)
+ ApplicationRefno = db.Column(db.Numeric, nullable = False)
+ EnquiryDetailsEnquiryDt = db.Column(db.DateTime, nullable = False)
+ EnquiryDetailsEnquiryPurpose = db.Column(db.String, nullable = False)
+ EnquiryDetailsEnquiryAmt = db.Column(db.Numeric, nullable = False)
+
+
\ No newline at end of file
diff --git a/Models/con_account_transaction_detail.py b/Models/con_account_transaction_detail.py
new file mode 100644
index 0000000..fea356d
--- /dev/null
+++ b/Models/con_account_transaction_detail.py
@@ -0,0 +1,49 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Con_account_transaction_detail(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ AccountTranDetailsID = db.Column(db.Integer, nullable = False)
+ MemberReferenceNumber = db.Column(db.Numeric, nullable = False)
+ ReportingMemberShortName = db.Column(db.String, nullable = False)
+ AccountNumber = db.Column(db.String, nullable = False)
+ AccountType = db.Column(db.String, nullable = False)
+ OwnershipIndicator = db.Column(db.DateTime, nullable = False)
+ DateOpenedDisbursed = db.Column(db.DateTime, nullable = False)
+ DateOfLastPayment = db.Column(db.DateTime, nullable = False)
+ DateClosed = db.Column(db.DateTime, nullable = False)
+ DateReportedAndCertified = db.Column(db.DateTime, nullable = False)
+ HighCreditSanctionedAmount = db.Column(db.Numeric, nullable = False)
+ CurrentBalance = db.Column(db.Numeric, nullable = False)
+ AmountOverdue = db.Column(db.Numeric, nullable = False)
+ PaymentHistory1 = db.Column(db.String, nullable = False)
+ PaymentHistory2 = db.Column(db.String, nullable = False)
+ PaymentHistoryStartDate = db.Column(db.DateTime, nullable = False)
+ PaymentHistoryEndDate = db.Column(db.DateTime, nullable = False)
+ SuitFiledWilfulDefault = db.Column(db.String, nullable = False)
+ WrittenOffAndSettledStatus = db.Column(db.String, nullable = False)
+ ValueOfCollateral = db.Column(db.String, nullable = False)
+ TypeOfCollateral = db.Column(db.String, nullable = False)
+ CreditLimit = db.Column(db.Numeric, nullable = False)
+ CashLimit = db.Column(db.Numeric, nullable = False)
+ RateOfInterest = db.Column(db.Numeric, nullable = False)
+ RepaymentTenure = db.Column(db.Numeric, nullable = False)
+ EMIAmount = db.Column(db.Numeric, nullable = False)
+ WrittenOffAmountTotal = db.Column(db.Numeric, nullable = False)
+ WrittenOffAmountPrincipal = db.Column(db.Numeric, nullable = False)
+ SettlementAmount = db.Column(db.Numeric, nullable = False)
+ PaymentFrequency = db.Column(db.String, nullable = False)
+ ActualPaymentAmount = db.Column(db.Numeric, nullable = False)
+ DateOfEntryForErrorCode = db.Column(db.String, nullable = False)
+ ErrorCode = db.Column(db.String, nullable = False)
+ DateOfEntryForCIBILRemarksCode = db.Column(db.String, nullable = False)
+ CIBILRemarksCode = db.Column(db.String, nullable = False)
+ DateOfEntryForErrorDisputeRemarksCode = db.Column(db.String, nullable = False)
+ DateOfEntryForErrorDisputeRemarksCode = db.Column(db.String, nullable = False)
+ ErrorDisputeRemarksCode1 = db.Column(db.String, nullable = False)
+ ErrorDisputeRemarksCode2 = db.Column(db.String, nullable = False)
+ createdAt = db.Column(db.DateTime, nullable = False)
+ updatedAt = db.Column(db.DateTime, nullable = False)
+ createdby = db.Column(db.Integer, nullable = False)
+ updatedby = db.Column(db.Integer, nullable = False)
\ No newline at end of file
diff --git a/Models/con_dpd_transaction_detail.py b/Models/con_dpd_transaction_detail.py
new file mode 100644
index 0000000..b928ddc
--- /dev/null
+++ b/Models/con_dpd_transaction_detail.py
@@ -0,0 +1,16 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Con_dpd_transaction_detail(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ DetailID = db.Column(db.Integer, nullable = False)
+ AccountTranDetailsID = db.Column(db.Integer, nullable = False)
+ MemberRefNo = db.Column(db.Numeric, nullable = False)
+ StartDate = db.Column(db.DateTime, nullable = False)
+ Code = db.Column(db.String, nullable = False)
+ EntryDate = db.Column(db.DateTime, nullable = False)
+ createdAt = db.Column(db.DateTime, nullable = False)
+ updatedAt = db.Column(db.DateTime, nullable = False)
+ createdby = db.Column(db.Integer, nullable = False)
+ updatedby = db.Column(db.Integer, nullable = False)
\ No newline at end of file
diff --git a/Models/con_enquiry_detail.py b/Models/con_enquiry_detail.py
new file mode 100644
index 0000000..a9f59b2
--- /dev/null
+++ b/Models/con_enquiry_detail.py
@@ -0,0 +1,16 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Con_enquiry_detail(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ EnquiryID = db.Column(db.Integer, nullable = False)
+ MemberReferenceNumber = db.Column(db.Numeric, nullable = False)
+ DateOfEnquiry = db.Column(db.DateTime, nullable = False)
+ EnquiringMemberShortName = db.Column(db.String, nullable = False)
+ EnquiryPurpose = db.Column(db.String, nullable = False)
+ EnquiryAmount = db.Column(db.Numeric, nullable = False)
+ createdAt = db.Column(db.DateTime, nullable = False)
+ updatedAt = db.Column(db.DateTime, nullable = False)
+ createdby = db.Column(db.Integer, nullable = False)
+ updatedby = db.Column(db.Integer, nullable = False)
\ No newline at end of file
diff --git a/Models/intermediate_tables.py b/Models/intermediate_tables.py
new file mode 100644
index 0000000..4c3b1b4
--- /dev/null
+++ b/Models/intermediate_tables.py
@@ -0,0 +1,69 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class In_borrower_detail(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ losid = db.Column(db.String, nullable = False)
+ ReferenceNumber = db.Column(db.String, nullable = False)
+ ConsumerNameField1 = db.Column(db.String, nullable = False)
+ ConsumerNameField2 = db.Column(db.String, nullable = False)
+ ConsumerNameField3 = db.Column(db.String, nullable = False)
+ ConsumerNameField4 = db.Column(db.String, nullable = False)
+ ConsumerNameField5 = db.Column(db.String, nullable = False)
+ PAN = db.Column(db.String, nullable = False)
+ cibil_type = db.Column(db.String, nullable = False)
+
+class In_credit_facility(db.Model):
+ AccountTranDetailsID = db.Column(db.Integer, primary_key =True)
+ losid = db.Column(db.String, nullable = False)
+ ReferenceNumber = db.Column(db.String, nullable = False)
+ cibil_type = db.Column(db.String, nullable = False)
+ month_bucket_index = db.Column(db.Integer, nullable = False)
+ AccountType = db.Column(db.String, nullable = False)
+ WrittenOffAndSettledStatus = db.Column(db.String, nullable = False)
+ OwnershipIndicator = db.Column(db.DateTime, nullable = False)
+ DateOpenedDisbursed = db.Column(db.DateTime, nullable = False)
+ DateClosed = db.Column(db.DateTime, nullable = False)
+ DateReportedAndCertified = db.Column(db.DateTime, nullable = False)
+ HighCreditSanctionedAmount = db.Column(db.Numeric, nullable = False)
+ CurrentBalance = db.Column(db.Numeric, nullable = False)
+ AmountOverdue = db.Column(db.Numeric, nullable = False)
+ CreditLimit = db.Column(db.Numeric, nullable = False)
+ RepaymentTenure = db.Column(db.Numeric, nullable = False)
+ EMIAmount = db.Column(db.Numeric, nullable = False)
+ grp_str = db.Column(db.String, nullable = False)
+
+
+
+class In_dpd_transaction_detail(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ # losid = db.Column(db.String, nullable = False)
+ AccountTranDetailsID = db.Column(db.Integer, nullable = False)
+ ReferenceNumber = db.Column(db.String, nullable = False)
+ cibil_type = db.Column(db.Integer, nullable = False)
+ month_bucket_index = db.Column(db.Integer, nullable = False)
+ StartDate = db.Column(db.DateTime, nullable = False)
+ Code = db.Column(db.String, nullable = False)
+ # DateOpenedDisbursed = db.Column(db.DateTime, nullable = False)
+ # DateReportedAndCertified = db.Column(db.DateTime, nullable = False)
+ # HighCreditSanctionedAmount = db.Column(db.Numeric, nullable = False)
+ # CurrentBalance = db.Column(db.Numeric, nullable = False)
+ # AmountOverdue = db.Column(db.Numeric, nullable = False)
+ # CreditLimit = db.Column(db.Numeric, nullable = False)
+ # RepaymentTenure = db.Column(db.Numeric, nullable = False)
+ # EMIAmount = db.Column(db.Numeric, nullable = False)
+
+class In_enquiry_detail(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ losid = db.Column(db.String, nullable = False)
+ ReferenceNumber = db.Column(db.String, nullable = False)
+ cibil_type = db.Column(db.Integer, nullable = False)
+ month_bucket_index = db.Column(db.Integer, nullable = False)
+ DateOfEnquiry = db.Column(db.Date, nullable = False)
+ EnquiryPurpose = db.Column(db.String, nullable = False)
+ EnquiryAmount = db.Column(db.Numeric, nullable = False)
+ grp_str = db.Column(db.String, nullable = False)
+
+
+
diff --git a/Models/month_bucket_master.py b/Models/month_bucket_master.py
new file mode 100644
index 0000000..4448cc3
--- /dev/null
+++ b/Models/month_bucket_master.py
@@ -0,0 +1,13 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Month_bucket_master(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ name = db.Column(db.String, nullable = False)
+ range_from = db.Column(db.String, nullable = False)
+ range_to = db.Column(db.Numeric, nullable = False)
+ type = db.Column(db.DateTime, nullable = False)
+ isactive = db.Column(db.DateTime, nullable = False)
+ createdon = db.Column(db.Integer, nullable = False)
+ updatedon = db.Column(db.Integer, nullable = False)
\ No newline at end of file
diff --git a/Models/op_enquiry.py b/Models/op_enquiry.py
new file mode 100644
index 0000000..683444f
--- /dev/null
+++ b/Models/op_enquiry.py
@@ -0,0 +1,66 @@
+# import db object from flask app
+from app import db
+from sqlalchemy import Column, ForeignKey, Integer, Table, Numeric, String, DateTime,Boolean
+from sqlalchemy.orm import declarative_base, relationship
+
+Base = declarative_base()
+
+
+class EnquiryParent(Base):
+ __tablename__ = "out_enquity_amount_p"
+ id = Column(Integer, primary_key=True)
+ losid = Column(Integer, nullable = False)
+ ref_no = Column(Integer, nullable = False)
+ facility_type = Column(Integer, nullable = False)
+ total_amt = Column(Numeric, nullable = False)
+ total_count = Column(Integer, nullable = False)
+ is_active = Column(Boolean, nullable = False)
+ createdAt = Column(DateTime, nullable = False)
+ updatedAt = Column(DateTime, nullable = False)
+ createdby = Column(Integer, nullable = False)
+ updatedby = Column(Integer, nullable = False)
+ output_type = Column(Integer, nullable = False)
+ # children = relationship("Child")
+
+
+class EnquiryChild(Base):
+ __tablename__ = "out_enquiry_amount_c"
+ id = Column(Integer, primary_key=True)
+ # enquiry_amount_id = Column(Integer, ForeignKey("parent.id"))
+ enquiry_amount_id = Column(Integer, nullable = False)
+ months_range = Column(String, nullable = False)
+ amt = Column(Integer, nullable = False)
+ count = Column(Integer, nullable = False)
+ is_active = Column(Integer, nullable = False)
+ createdAt = Column(DateTime, nullable = True)
+ createdby = Column(Integer, nullable = True)
+ updatedAt = Column(DateTime, nullable = True)
+ updatedby = Column(Integer, nullable = True)
+ # parent = relationship("Parent")
+
+
+# database tables
+# class Op_enquiry_amount_and_count_unique_enquiries(db.Model):
+# id = db.Column(db.Integer, primary_key =True)
+# temp_id = db.Column(db.Integer, nullable = False)
+# ApplicationRefno = db.Column(db.Numeric, nullable = False)
+# BorrowerCurrentDetailsID = db.Column(db.Integer, nullable = False)
+# CFHistory24Monthsmonth = db.Column(db.DateTime, nullable = False)
+# CFHistory24MonthsACorDPD = db.Column(db.String, nullable = False)
+# CFHistory24MonthsOSAmount = db.Column(db.Numeric, nullable = False)
+
+ # [id]
+ # ,[enquiry_amount_count_cedit_facility]
+ # ,[enquiry_amount_count_1]
+ # ,[enquiry_amount_count_2_to_3]
+ # ,[enquiry_amount_count_4_to_6]
+ # ,[enquiry_amount_count_7_to_12]
+ # ,[enquiry_amount_count_13_to_24]
+ # ,[enquiry_amount_count_25_to_36]
+ # ,[enquiry_amount_count_greater_than_36]
+ # ,[enquiry_amount_count_total]
+ # ,[is_active]
+ # ,[createdAt]
+ # ,[createdby]
+ # ,[updatedAt]
+ # ,[updatedby]
\ No newline at end of file
diff --git a/Models/op_rtr_summary_of_active_loans.py b/Models/op_rtr_summary_of_active_loans.py
new file mode 100644
index 0000000..84bce23
--- /dev/null
+++ b/Models/op_rtr_summary_of_active_loans.py
@@ -0,0 +1,61 @@
+# import db object from flask app
+from app import db
+
+# database tables[out_active_and_closed_loans_details]
+class Out_active_and_closed_loans_details(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ losid = db.Column(db.String, nullable = False)
+ ref_no = db.Column(db.String, nullable = False)
+ account_type = db.Column(db.String, nullable = False)
+ consumer_name = db.Column(db.String, nullable = False)
+ ownership = db.Column(db.String, nullable = False)
+ reported_and_certified_date = db.Column(db.DateTime, nullable = False)
+ opened_date = db.Column(db.DateTime, nullable = False)
+ sanctioned_amount = db.Column(db.Numeric, nullable = False)
+ current_balance = db.Column(db.Numeric, nullable = False)
+ repayment_tenure = db.Column(db.Integer, nullable = False)
+ emi_amount = db.Column(db.Numeric, nullable = False)
+ overdue_amount = db.Column(db.Numeric, nullable = False)
+ status = db.Column(db.String, nullable = False)
+ current_dpd = db.Column(db.String, nullable = False)
+ DateClosed = db.Column(db.DateTime, nullable = False)
+ grp_str = db.Column(db.String, nullable = False)
+ # dpd0_6 = db.Column(db.String, nullable = False)
+ # dpd7_12 = db.Column(db.String, nullable = False)
+ # dpd13_24 = db.Column(db.String, nullable = False)
+ # dpd25_36 = db.Column(db.String, nullable = False)
+ highest_dpd_month_wise_bucket_or_count_0_to_6 = db.Column(db.String, nullable = False)
+ highest_dpd_month_wise_bucket_or_count_07_to_12 = db.Column(db.String, nullable = False)
+ highest_dpd_month_wise_bucket_or_count_13_to_24 = db.Column(db.String, nullable = False)
+ highest_dpd_month_wise_bucket_or_count_25_to_36 = db.Column(db.String, nullable = False)
+ is_active = db.Column(db.Boolean, nullable = False)
+ createdAt = db.Column(db.DateTime, nullable = False)
+ updatedAt = db.Column(db.DateTime, nullable = False)
+ createdby = db.Column(db.Integer, nullable = False)
+ updatedby = db.Column(db.Integer, nullable = False)
+
+# def __init__(self, los_id):
+# self.los_id = occurences
+# # [id]
+ # ,[account_type]
+ # ,[consumer_name]
+ # ,[ownership]
+ # ,[reported_and_certified_date]
+ # ,[opened_date]
+ # ,[sanctioned_amount]
+ # ,[current_balance]
+ # ,[repayment_tenure]
+ # ,[emi_amount]
+ # ,[overdue_amount]
+ # ,[status]
+ # ,[current_dpd]
+ # ,[highest_dpd_month_wise_bucket_or_count_0_to_6]
+ # ,[highest_dpd_month_wise_bucket_or_count_07_to_12]
+ # ,[highest_dpd_month_wise_bucket_or_count_13_to_24]
+ # ,[highest_dpd_month_wise_bucket_or_count_25_to_36]
+ # ,[is_active]
+ # ,[createdAt]
+ # ,[createdby]
+ # ,[updatedAt]
+ # ,[updatedby]
+ #
\ No newline at end of file
diff --git a/Models/op_sanction.py b/Models/op_sanction.py
new file mode 100644
index 0000000..cf6946e
--- /dev/null
+++ b/Models/op_sanction.py
@@ -0,0 +1,74 @@
+# import db object from flask app
+from app import db
+from sqlalchemy import Column, ForeignKey, Integer, Table, Numeric, String, DateTime,Boolean
+from sqlalchemy.orm import declarative_base, relationship
+
+Base = declarative_base()
+
+
+class SanctionParent(Base):
+ __tablename__ = "out_sanction_amt_and_replacement_of_debt_p"
+ id = Column(Integer, primary_key=True)
+ losid = Column(Integer, nullable = False)
+ ref_no = Column(Integer, nullable = False)
+ facility_type = Column(Integer, nullable = False)
+ total_amt = Column(Numeric, nullable = False)
+ total_count = Column(Integer, nullable = False)
+ open_total_amt = Column(Numeric, nullable = False)
+ closed_total_amt = Column(Numeric, nullable = False)
+ open_total_count = Column(Integer, nullable = False)
+ closed_total_count = Column(Integer, nullable = False)
+ output_type = Column(Integer, nullable = False)
+ # is_active = Column(Boolean, nullable = False)
+ createdAt = Column(DateTime, nullable = False)
+ updatedAt = Column(DateTime, nullable = False)
+ createdby = Column(Integer, nullable = False)
+ updatedby = Column(Integer, nullable = False)
+ # children = relationship("Child")
+
+
+class SanctionChild(Base):
+ __tablename__ = "out_sanction_amt_and_replacement_of_debt_c"
+ id = Column(Integer, primary_key=True)
+ # enquiry_amount_id = Column(Integer, ForeignKey("parent.id"))
+ sanction_amt_id = Column(Integer, nullable = False)
+ months_range = Column(String, nullable = False)
+ amt = Column(Integer, nullable = False)
+ count = Column(Integer, nullable = False)
+ opening_amt = Column(Integer, nullable = False)
+ opening_count = Column(Integer, nullable = False)
+ closing_amt = Column(Integer, nullable = False)
+ closing_count = Column(Integer, nullable = False)
+ # is_active = Column(Integer, nullable = False)
+ createdAt = Column(DateTime, nullable = True)
+ createdby = Column(Integer, nullable = True)
+ updatedAt = Column(DateTime, nullable = True)
+ updatedby = Column(Integer, nullable = True)
+ # parent = relationship("Parent")
+
+
+# database tables
+# class Op_enquiry_amount_and_count_unique_enquiries(db.Model):
+# id = db.Column(db.Integer, primary_key =True)
+# temp_id = db.Column(db.Integer, nullable = False)
+# ApplicationRefno = db.Column(db.Numeric, nullable = False)
+# BorrowerCurrentDetailsID = db.Column(db.Integer, nullable = False)
+# CFHistory24Monthsmonth = db.Column(db.DateTime, nullable = False)
+# CFHistory24MonthsACorDPD = db.Column(db.String, nullable = False)
+# CFHistory24MonthsOSAmount = db.Column(db.Numeric, nullable = False)
+
+ # [id]
+ # ,[enquiry_amount_count_cedit_facility]
+ # ,[enquiry_amount_count_1]
+ # ,[enquiry_amount_count_2_to_3]
+ # ,[enquiry_amount_count_4_to_6]
+ # ,[enquiry_amount_count_7_to_12]
+ # ,[enquiry_amount_count_13_to_24]
+ # ,[enquiry_amount_count_25_to_36]
+ # ,[enquiry_amount_count_greater_than_36]
+ # ,[enquiry_amount_count_total]
+ # ,[is_active]
+ # ,[createdAt]
+ # ,[createdby]
+ # ,[updatedAt]
+ # ,[updatedby]
\ No newline at end of file
diff --git a/Models/op_sanction_amount_frequency.py b/Models/op_sanction_amount_frequency.py
new file mode 100644
index 0000000..01ebb7f
--- /dev/null
+++ b/Models/op_sanction_amount_frequency.py
@@ -0,0 +1,27 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Op_sanction_amount_frequency(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ temp_id = db.Column(db.Integer, nullable = False)
+ ApplicationRefno = db.Column(db.Numeric, nullable = False)
+ BorrowerCurrentDetailsID = db.Column(db.Integer, nullable = False)
+ CFHistory24Monthsmonth = db.Column(db.DateTime, nullable = False)
+ CFHistory24MonthsACorDPD = db.Column(db.String, nullable = False)
+ CFHistory24MonthsOSAmount = db.Column(db.Numeric, nullable = False)
+ # [id]
+ # ,[sanction_amount_count_cedit_facility]
+ # ,[sanction_amount_count_1]
+ # ,[sanction_amount_count_2_to_3]
+ # ,[sanction_amount_count_4_to_6]
+ # ,[sanction_amount_count_7_to_12]
+ # ,[sanction_amount_count_13_to_24]
+ # ,[sanction_amount_count_25_to_36]
+ # ,[sanction_amount_count_greater_than_36]
+ # ,[sanction_amount_count_total]
+ # ,[is_active]
+ # ,[createdAt]
+ # ,[createdby]
+ # ,[updatedAt]
+ # ,[updatedby]
\ No newline at end of file
diff --git a/Models/op_snapshot_of_closed_loans.py b/Models/op_snapshot_of_closed_loans.py
new file mode 100644
index 0000000..ecc8828
--- /dev/null
+++ b/Models/op_snapshot_of_closed_loans.py
@@ -0,0 +1,36 @@
+# import db object from flask app
+from app import db
+
+# database tables
+class Op_snapshot_of_closed_loans(db.Model):
+ id = db.Column(db.Integer, primary_key =True)
+ temp_id = db.Column(db.Integer, nullable = False)
+ ApplicationRefno = db.Column(db.Numeric, nullable = False)
+ BorrowerCurrentDetailsID = db.Column(db.Integer, nullable = False)
+ CFHistory24Monthsmonth = db.Column(db.DateTime, nullable = False)
+ CFHistory24MonthsACorDPD = db.Column(db.String, nullable = False)
+ CFHistory24MonthsOSAmount = db.Column(db.Numeric, nullable = False)
+
+ # [id]
+ # ,[account_type]
+ # ,[consumer_name]
+ # ,[ownership]
+ # ,[reported_and_certified_date]
+ # ,[opened_date]
+ # ,[sanctioned_amount]
+ # ,[current_balance]
+ # ,[repayment_tenure]
+ # ,[emi_amount]
+ # ,[overdue_amount]
+ # ,[status]
+ # ,[current_dpd]
+ # ,[highest_dpd_month_wise_bucket_or_count_0_to_6]
+ # ,[highest_dpd_month_wise_bucket_or_count_07_to_12]
+ # ,[highest_dpd_month_wise_bucket_or_count_13_to_24]
+ # ,[highest_dpd_month_wise_bucket_or_count_25_to_36]
+ # ,[is_active]
+ # ,[createdAt]
+ # ,[createdby]
+ # ,[updatedAt]
+ # ,[updatedby]
+
\ No newline at end of file
diff --git a/app.py b/app.py
new file mode 100644
index 0000000..ce62466
--- /dev/null
+++ b/app.py
@@ -0,0 +1,127 @@
+#sys imports
+from flask import Flask
+from flask_restful import Resource, Api
+from flask import render_template
+from flask_restful_swagger import swagger
+import logging
+from datetime import datetime
+# from flask_sqlalchemy import SQLAlchemy
+# from app import db
+# import pypyodbc
+
+
+#user import
+from Controllers.testcontroller import *
+# from Controllers.WorkingController import WorkingController
+from Controllers.testclass import Test
+
+# from routes import initialize_routes
+from services.db import db
+from services.PandsSampleDataDrameServeice import *
+# from services.MyCustomJSONEncoder import MyJSONEncoder
+from services.dbservice import DbService
+from services.utilityservices import sendRestResponse #utility_blueprint
+# import Controllers.testclass as testclass
+
+app = Flask('cibil')
+logFileName = './logs/'+datetime.now().strftime("%Y-%m-%d")+'.log';
+
+########### LOG METHOD 1 #################
+# logging.basicConfig(filename=logFileName,level=logging.WARNING, format=f'%(asctime)s %(levelname)s %(name)s %(threadName)s : %(message)s')
+logging.basicConfig(filename=logFileName,level=logging.DEBUG, format=f'%(asctime)s %(levelname)s : %(message)s')
+logging.getLogger('sqlalchemy.engine').setLevel(logging.INFO)
+########### LOG METHOD 1 #################
+
+#######METHOD 2#########################
+# logger = logging.getLogger(name='cibil')
+# logger.setLevel(logging.DEBUG)
+# handler = logging.FileHandler(filename=logFileName)
+# handler.setLevel(logging.DEBUG)
+# handler.setFormatter(logging.Formatter(
+# '%(asctime)s - %(name)s - %(levelname)s - %(message)s'))
+# app.logger.addHandler(handler)
+# app.logger.info('Manual INfo')
+#######METHOD 2#########################
+
+# app.json_encoder = MyJSONEncoder
+dbConnectionString = DbService.getDBConnectionString()
+# print(dbConnectionString)
+app.config['SQLALCHEMY_DATABASE_URI'] = dbConnectionString
+app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
+# db = SQLAlchemy(app)
+
+
+
+db.init_app(app)
+api = Api(app)
+api = swagger.docs(api, apiVersion='0.1')
+# init_app()
+
+
+# result = db.engine.execute("SELECT id,charge_type,charge_type_description,created_at,modified_at FROM charge_type")
+# print(result)
+# for i in result:
+# print(i)
+
+
+# REST API's
+class HelloWorld(Resource):
+ def get(self):
+ return {'hello': 'world'}
+
+class TestFunction(Resource):
+ def get(self):
+ return testFunction()
+
+class TestingClass(Resource):
+ def get(self):
+ print(self)
+ return(Test().testFunction2())
+
+class TestDB(Resource):
+ def get(self):
+ # return(testDBcon())
+ return sendRestResponse(data = testDBcon())
+
+api.add_resource(HelloWorld, '/api/')
+api.add_resource(TestFunction, '/api/test')
+api.add_resource(TestingClass, '/api/testclass')
+api.add_resource(TestDB, '/api/db')
+
+
+# Normal FLask routes
+
+@app.route("/")
+def hello_world():
+ app.logger.info('Manual INfo')
+ # app.logger.warning('Manual Warning')
+ # app.logger.error('Manual error')
+ # app.logger.critical('Manual critical')
+ return "
Hello, World!
"
+
+@app.route("/aboutme/")
+def about(name=None):
+ # app.logger.info('Manual INfo')
+ # app.logger.warning('Manual Warning')
+ # app.logger.error('Manual error')
+ # app.logger.critical('Manual critical')
+ # print(name)
+ return render_template('about.html', name=name)
+
+@app.route("/dataframe")
+def dataframe():
+ dateframe = getDataFrame()
+
+ return render_template('dataframe.html', tables=[dateframe.to_html(classes='data')], titles=dateframe.columns.values)
+
+@app.route("/cibildf")
+def cibildataframe():
+ dateframe = getCIBILDataFrame()
+
+ return render_template('dataframe.html', tables=[dateframe.to_html(classes='data')], titles=dateframe.columns.values)
+
+
+if __name__ == '__main__':
+ from routes import initialize_routes
+ initialize_routes(api)
+ app.run(debug=True)
\ No newline at end of file
diff --git a/cibil.json b/cibil.json
new file mode 100644
index 0000000..c0be9f8
--- /dev/null
+++ b/cibil.json
@@ -0,0 +1,24684 @@
+{
+ "commercial_cibil_rawdata": {
+ "com_credit_facility_current_details": [
+ {
+ "id": "3",
+ "temp_id": "226607",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 1",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "10 Days Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-07-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "73740.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "1420049.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-09-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "4",
+ "temp_id": "226608",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 2",
+ "CreditFacilityCDcfType": "Demand loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "14 Days Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-01-21",
+ "CreditFacilityCDLstReportedDate": "2020-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3750000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "183164.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "1467418.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-13 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-08-06 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "5",
+ "temp_id": "226609",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 3",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "15 Days Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1515000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1515000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-17 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "6",
+ "temp_id": "226610",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 4",
+ "CreditFacilityCDcfType": "Demand loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "9 Days Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-08-14",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "680000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "19975.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-11-23 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-12-04 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "48",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "7",
+ "temp_id": "226611",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 5",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3000000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "104732.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2021-12-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "8",
+ "temp_id": "226612",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 6",
+ "CreditFacilityCDcfType": "GECL Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-07-01",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4800000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "4800000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "4223612.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "4223612.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2020-07-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2024-07-01 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "48",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "9",
+ "temp_id": "226613",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 7",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "6997500.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "6997500.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "6997500.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2031-05-31 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "10",
+ "temp_id": "226614",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 8",
+ "CreditFacilityCDcfType": "Auto Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Restructured Due to Natural Calamity,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-26",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3100000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3100000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2623481.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2655792.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-12-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2027-05-26 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "89",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "Restructured due to COVID-19",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "NULL"
+ },
+ {
+ "id": "11",
+ "temp_id": "226615",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 9",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "22779900.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "22779900.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "22779900.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2022-10-10 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "12",
+ "temp_id": "226616",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 10",
+ "CreditFacilityCDcfType": "Auto Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Restructured Due to Natural Calamity,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-11-13",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1265323.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "1280616.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-11-13 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2027-06-13 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "91",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "Restructured due to COVID-19",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "NULL"
+ },
+ {
+ "id": "13",
+ "temp_id": "226617",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 11",
+ "CreditFacilityCDcfType": "Cash credit",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2011-08-04",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "40000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "40000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "36442665.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "39828828.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2011-08-04 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2022-03-24 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "2022-03-24 00:00:00",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "128",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "NULL",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "6",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "14",
+ "temp_id": "226618",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 12",
+ "CreditFacilityCDcfType": "Long term loan (period above 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Restructured Due to Natural Calamity,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-09-26",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4575000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "4575000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3466648.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "3520500.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2026-02-26 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "89",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "Restructured due to COVID-19",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "15",
+ "temp_id": "226619",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 13",
+ "CreditFacilityCDcfType": "Long term loan (period above 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2021-10-29",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4400000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "4400000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "4402712.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "4402712.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2021-10-29 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2026-10-29 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "60",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Partial",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "16",
+ "temp_id": "226620",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 14",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "11320920.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "11320920.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "11320920.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2024-04-25 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "17",
+ "temp_id": "226621",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 15",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-07-01",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "782832.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "782832.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2020-07-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2022-07-01 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "18",
+ "temp_id": "226622",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 16",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "12284995.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "12284995.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "12284995.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2025-04-19 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "19",
+ "temp_id": "226623",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 17",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4900000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "4900000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "4900000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2026-11-19 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "20",
+ "temp_id": "226624",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 18",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2019-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1334801.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "21",
+ "temp_id": "226625",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 19",
+ "CreditFacilityCDcfType": "Loan extended through credit cards",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-10-11",
+ "CreditFacilityCDLstReportedDate": "2021-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-10-04 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-10-31 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "22",
+ "temp_id": "226626",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 20",
+ "CreditFacilityCDcfType": "Overdraft",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2011-07-08",
+ "CreditFacilityCDLstReportedDate": "2021-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "0.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "44.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "24924.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2011-07-08 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "23",
+ "temp_id": "226627",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 21",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-06-29",
+ "CreditFacilityCDLstReportedDate": "2019-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "5100000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "5100000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "5100000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-06-29 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "24",
+ "temp_id": "226628",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 22",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-01-22",
+ "CreditFacilityCDLstReportedDate": "2019-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "675810.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "675810.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "675810.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-01-22 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "25",
+ "temp_id": "226629",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 23",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-11-26",
+ "CreditFacilityCDLstReportedDate": "2018-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1501370.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1501370.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "1501370.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-11-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "26",
+ "temp_id": "226630",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 24",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-05-23",
+ "CreditFacilityCDLstReportedDate": "2018-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2080000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2080000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2080000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-05-23 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "27",
+ "temp_id": "226631",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 25",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-06-27",
+ "CreditFacilityCDLstReportedDate": "2018-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2321280.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2321280.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2321280.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-06-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "28",
+ "temp_id": "226632",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 26",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-05-25",
+ "CreditFacilityCDLstReportedDate": "2018-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "870000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "870000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "870000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-05-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "29",
+ "temp_id": "226633",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 27",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-04-20",
+ "CreditFacilityCDLstReportedDate": "2018-04-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "700000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "700000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "700000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-04-20 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "30",
+ "temp_id": "226634",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 28",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-05-25",
+ "CreditFacilityCDLstReportedDate": "2018-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "730000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "730000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "730000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-05-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "31",
+ "temp_id": "226635",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 29",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-03-21",
+ "CreditFacilityCDLstReportedDate": "2019-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2987927.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2987927.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2987927.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-03-21 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "32",
+ "temp_id": "226636",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 30",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-03-22",
+ "CreditFacilityCDLstReportedDate": "2019-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3392073.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3392073.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "3392073.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-03-22 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "33",
+ "temp_id": "226637",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 31",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3017870.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3017870.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-05-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "34",
+ "temp_id": "226638",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 32",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3222130.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3222130.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-05-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "35",
+ "temp_id": "226639",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 33",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1200000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1200000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-05-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "36",
+ "temp_id": "226640",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 34",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2000000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "37",
+ "temp_id": "226641",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 35",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "300000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "300000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-02-14 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "38",
+ "temp_id": "226642",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 36",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3449000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3449000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-02-17 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "39",
+ "temp_id": "226643",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 37",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "400000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "400000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-02-14 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "40",
+ "temp_id": "226644",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 38",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3010150.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3010150.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-01-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "41",
+ "temp_id": "226645",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 39",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3300000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3300000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-12-29 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "42",
+ "temp_id": "226646",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 40",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2016-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1000000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-10-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "43",
+ "temp_id": "226647",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 41",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2016-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "500000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-10-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "44",
+ "temp_id": "226648",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 42",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2016-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1190000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1190000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-10-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "45",
+ "temp_id": "226649",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 43",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2015-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "150000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "150000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-05-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "46",
+ "temp_id": "226650",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 44",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2015-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "150000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "150000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-05-29 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "47",
+ "temp_id": "226651",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 45",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2015-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "200000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "200000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-02-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "48",
+ "temp_id": "226652",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 46",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2015-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "700000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "700000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-02-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "49",
+ "temp_id": "226653",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 47",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2014-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "543000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "543000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-12-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "50",
+ "temp_id": "226654",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 48",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2014-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "500000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-12-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "51",
+ "temp_id": "226655",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 49",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2014-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "168332.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "168331.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-05-24 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "52",
+ "temp_id": "226656",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 50",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "107123.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "107123.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-10-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "53",
+ "temp_id": "226657",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 51",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "103461.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "103461.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-09-16 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "54",
+ "temp_id": "226658",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 52",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "73644.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "73644.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-10-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "55",
+ "temp_id": "226659",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 53",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-07-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "48900.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "48900.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-06-24 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "56",
+ "temp_id": "226660",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 54",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2012-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "129034.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "129034.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2012-12-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "57",
+ "temp_id": "226661",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 55",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2012-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "895594.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "895594.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2012-12-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "58",
+ "temp_id": "226662",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 56",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "76748.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "76748.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-05-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "59",
+ "temp_id": "226663",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 57",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-04-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "65325.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "65325.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-04-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "60",
+ "temp_id": "226664",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 58",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "240562.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "240562.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-02-20 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "61",
+ "temp_id": "226665",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 59",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2012-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "125000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "125000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2012-11-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "62",
+ "temp_id": "226666",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 60",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-18",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "127413.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "2500.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-09-02 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "NULL"
+ },
+ {
+ "id": "63",
+ "temp_id": "226667",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 61",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "225000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "0.0000",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-11-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2015-12-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "64",
+ "temp_id": "226668",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 62",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1530000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "0.0000",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-05-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2017-06-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "65",
+ "temp_id": "226669",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 63",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2005500.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-24 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-09-02 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "66",
+ "temp_id": "226670",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 64",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-08-09",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1025000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "0.0000",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-11-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2018-12-02 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "67",
+ "temp_id": "226671",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 65",
+ "CreditFacilityCDcfType": "Overdraft",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2021-04-15",
+ "CreditFacilityCDLstReportedDate": "2021-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "5850000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "5850000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "4834744.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "4834744.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-07-05 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-07-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "2021-07-05 00:00:00",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "68",
+ "temp_id": "226672",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 66",
+ "CreditFacilityCDcfType": "Property Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-04-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "10125000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "10125000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-12-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "120",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "69",
+ "temp_id": "226673",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 67",
+ "CreditFacilityCDcfType": "Short term loan (less than 1 year)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2021-03-31",
+ "CreditFacilityCDLstReportedDate": "2021-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "978581.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "978581.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "978844.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2020-09-03 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-03-31 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "7",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "70",
+ "temp_id": "226674",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 68",
+ "CreditFacilityCDcfType": "Long term loan (period above 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2017-05-04",
+ "CreditFacilityCDLstReportedDate": "2019-11-25",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4700000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "4700000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2011-09-23 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2017-03-23 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "66",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "71",
+ "temp_id": "226675",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 69",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2014-11-29",
+ "CreditFacilityCDLstReportedDate": "2016-09-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "8000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-06-09 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "72",
+ "temp_id": "226676",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 70",
+ "CreditFacilityCDcfType": "Auto Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-24",
+ "CreditFacilityCDLstReportedDate": "2019-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "600000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "600000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "250494.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "12332.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "239545.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-08-12 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-08-12 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "60",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "73",
+ "temp_id": "226677",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 71",
+ "CreditFacilityCDcfType": "Auto Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-01-01",
+ "CreditFacilityCDLstReportedDate": "2019-11-25",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "440000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "440000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "10.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "10.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-11-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2018-11-01 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "60",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "74",
+ "temp_id": "226678",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 72",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-08-31",
+ "CreditFacilityCDLstReportedDate": "2020-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2509116.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2509116.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-08-11 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "75",
+ "temp_id": "226679",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 73",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "91956.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "76",
+ "temp_id": "226680",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 74",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "101304.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "77",
+ "temp_id": "226681",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 75",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1250000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1250000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "751221.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-02 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "78",
+ "temp_id": "226682",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 76",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1295629.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-22 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "79",
+ "temp_id": "226683",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 77",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-01-01",
+ "CreditFacilityCDLstReportedDate": "2020-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "106958.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-01-01 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "80",
+ "temp_id": "226684",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 78",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-01-07",
+ "CreditFacilityCDLstReportedDate": "2020-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2000000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "79928.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-01-07 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "15",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "81",
+ "temp_id": "226685",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 79",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Settled & Closed,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2019-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3535000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3535000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "3535000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "127799.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "127799.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-10-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "37",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "82",
+ "temp_id": "226686",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 80",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-16",
+ "CreditFacilityCDLstReportedDate": "2019-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-24 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Others",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "83",
+ "temp_id": "226687",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 81",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-26",
+ "CreditFacilityCDLstReportedDate": "2019-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "1349983.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-02 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-09-04 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Others",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "84",
+ "temp_id": "226688",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 82",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-07-31",
+ "CreditFacilityCDLstReportedDate": "2019-10-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "47692.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-02-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-09-28 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Others",
+ "CreditFacilityCDODTenure": "18",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "85",
+ "temp_id": "226689",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 83",
+ "CreditFacilityCDcfType": "Hire purchase",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-10-31",
+ "CreditFacilityCDLstReportedDate": "2019-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "Others",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "NULL"
+ },
+ {
+ "id": "86",
+ "temp_id": "226690",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 84",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2019-09-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "0.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "52000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-09-26 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "87",
+ "temp_id": "226691",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 85",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2019-09-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "0.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "40205.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-09-02 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "88",
+ "temp_id": "226692",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 86",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-05-22",
+ "CreditFacilityCDLstReportedDate": "2019-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1200000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1645518.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "1200000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "1239.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-16 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-05-22 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "18",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "89",
+ "temp_id": "226693",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 87",
+ "CreditFacilityCDcfType": "Property Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Settled & Closed,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2510000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2510000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2510000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "92643.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "92643.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-01-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-02-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "90",
+ "temp_id": "226694",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 88",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-07-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "91",
+ "temp_id": "226695",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 89",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "750000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "750000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "0.0000",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-14 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "92",
+ "temp_id": "226696",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 90",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-08-23",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-18 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-03-04 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Others",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "93",
+ "temp_id": "226697",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 91",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "42853.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-06-18 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ }
+ ],
+ "com_dpd_details": [
+ {
+ "id": "2",
+ "temp_id": "5438547",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "3",
+ "temp_id": "5438548",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "4",
+ "temp_id": "5438549",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "5",
+ "temp_id": "5438550",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "6",
+ "temp_id": "5438551",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "7",
+ "temp_id": "5438552",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "8",
+ "temp_id": "5438553",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "9",
+ "temp_id": "5438554",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "10",
+ "temp_id": "5438555",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "11",
+ "temp_id": "5438556",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "12",
+ "temp_id": "5438557",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "13",
+ "temp_id": "5438558",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "14",
+ "temp_id": "5438559",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "15",
+ "temp_id": "5438560",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "16",
+ "temp_id": "5438561",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "17",
+ "temp_id": "5438562",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "18",
+ "temp_id": "5438563",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "19",
+ "temp_id": "5438564",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "20",
+ "temp_id": "5438565",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1303126.0000"
+ },
+ {
+ "id": "21",
+ "temp_id": "5438566",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "22",
+ "temp_id": "5438567",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1455827.0000"
+ },
+ {
+ "id": "23",
+ "temp_id": "5438568",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "24",
+ "temp_id": "5438569",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "25",
+ "temp_id": "5438570",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "26",
+ "temp_id": "5438571",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1382419.0000"
+ },
+ {
+ "id": "27",
+ "temp_id": "5438572",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1545301.0000"
+ },
+ {
+ "id": "28",
+ "temp_id": "5438573",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1706073.0000"
+ },
+ {
+ "id": "29",
+ "temp_id": "5438574",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1864762.0000"
+ },
+ {
+ "id": "30",
+ "temp_id": "5438575",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2021395.0000"
+ },
+ {
+ "id": "31",
+ "temp_id": "5438576",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2175999.0000"
+ },
+ {
+ "id": "32",
+ "temp_id": "5438577",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2328601.0000"
+ },
+ {
+ "id": "33",
+ "temp_id": "5438578",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2479225.0000"
+ },
+ {
+ "id": "34",
+ "temp_id": "5438579",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2627898.0000"
+ },
+ {
+ "id": "35",
+ "temp_id": "5438580",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2774645.0000"
+ },
+ {
+ "id": "36",
+ "temp_id": "5438581",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2919491.0000"
+ },
+ {
+ "id": "37",
+ "temp_id": "5438582",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3062460.0000"
+ },
+ {
+ "id": "38",
+ "temp_id": "5438583",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3203577.0000"
+ },
+ {
+ "id": "39",
+ "temp_id": "5438584",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3342866.0000"
+ },
+ {
+ "id": "40",
+ "temp_id": "5438585",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3480351.0000"
+ },
+ {
+ "id": "41",
+ "temp_id": "5438586",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3616054.0000"
+ },
+ {
+ "id": "42",
+ "temp_id": "5438587",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "4395936.0000"
+ },
+ {
+ "id": "43",
+ "temp_id": "5438588",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "44",
+ "temp_id": "5438589",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "45",
+ "temp_id": "5438590",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "46",
+ "temp_id": "5438591",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "47",
+ "temp_id": "5438592",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "48",
+ "temp_id": "5438593",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "49",
+ "temp_id": "5438594",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "50",
+ "temp_id": "5438595",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "632978.0000"
+ },
+ {
+ "id": "51",
+ "temp_id": "5438596",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "697957.0000"
+ },
+ {
+ "id": "52",
+ "temp_id": "5438597",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "762324.0000"
+ },
+ {
+ "id": "53",
+ "temp_id": "5438598",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "762324.0000"
+ },
+ {
+ "id": "54",
+ "temp_id": "5438599",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "887844.0000"
+ },
+ {
+ "id": "55",
+ "temp_id": "5438600",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "948964.0000"
+ },
+ {
+ "id": "56",
+ "temp_id": "5438601",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1068964.0000"
+ },
+ {
+ "id": "57",
+ "temp_id": "5438602",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1068964.0000"
+ },
+ {
+ "id": "58",
+ "temp_id": "5438603",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1127342.0000"
+ },
+ {
+ "id": "59",
+ "temp_id": "5438604",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1242030.0000"
+ },
+ {
+ "id": "60",
+ "temp_id": "5438605",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1242030.0000"
+ },
+ {
+ "id": "61",
+ "temp_id": "5438606",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1299692.0000"
+ },
+ {
+ "id": "62",
+ "temp_id": "5438607",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1408631.0000"
+ },
+ {
+ "id": "63",
+ "temp_id": "5438608",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1408631.0000"
+ },
+ {
+ "id": "64",
+ "temp_id": "5438609",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1515000.0000"
+ },
+ {
+ "id": "65",
+ "temp_id": "5438610",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1515000.0000"
+ },
+ {
+ "id": "66",
+ "temp_id": "5438611",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "67",
+ "temp_id": "5438612",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "68",
+ "temp_id": "5438613",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "69",
+ "temp_id": "5438614",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "70",
+ "temp_id": "5438615",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "71",
+ "temp_id": "5438616",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "72",
+ "temp_id": "5438617",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "73",
+ "temp_id": "5438618",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "74",
+ "temp_id": "5438619",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "339575.0000"
+ },
+ {
+ "id": "75",
+ "temp_id": "5438620",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "313060.0000"
+ },
+ {
+ "id": "76",
+ "temp_id": "5438621",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "328113.0000"
+ },
+ {
+ "id": "77",
+ "temp_id": "5438622",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "342944.0000"
+ },
+ {
+ "id": "78",
+ "temp_id": "5438623",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "357556.0000"
+ },
+ {
+ "id": "79",
+ "temp_id": "5438624",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "371951.0000"
+ },
+ {
+ "id": "80",
+ "temp_id": "5438625",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "386134.0000"
+ },
+ {
+ "id": "81",
+ "temp_id": "5438626",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "400108.0000"
+ },
+ {
+ "id": "82",
+ "temp_id": "5438627",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "413875.0000"
+ },
+ {
+ "id": "83",
+ "temp_id": "5438628",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "427438.0000"
+ },
+ {
+ "id": "84",
+ "temp_id": "5438629",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "440801.0000"
+ },
+ {
+ "id": "85",
+ "temp_id": "5438630",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "453966.0000"
+ },
+ {
+ "id": "86",
+ "temp_id": "5438631",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "466937.0000"
+ },
+ {
+ "id": "87",
+ "temp_id": "5438632",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "479716.0000"
+ },
+ {
+ "id": "88",
+ "temp_id": "5438633",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "492307.0000"
+ },
+ {
+ "id": "89",
+ "temp_id": "5438634",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "504711.0000"
+ },
+ {
+ "id": "90",
+ "temp_id": "5438635",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "516932.0000"
+ },
+ {
+ "id": "91",
+ "temp_id": "5438636",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "528973.0000"
+ },
+ {
+ "id": "92",
+ "temp_id": "5438637",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "540835.0000"
+ },
+ {
+ "id": "93",
+ "temp_id": "5438638",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "552522.0000"
+ },
+ {
+ "id": "94",
+ "temp_id": "5438639",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "564036.0000"
+ },
+ {
+ "id": "95",
+ "temp_id": "5438640",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "96",
+ "temp_id": "5438641",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "97",
+ "temp_id": "5438642",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "799000.0000"
+ },
+ {
+ "id": "98",
+ "temp_id": "5438643",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "99",
+ "temp_id": "5438644",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "100",
+ "temp_id": "5438645",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "101",
+ "temp_id": "5438646",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "102",
+ "temp_id": "5438647",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "103",
+ "temp_id": "5438648",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "104",
+ "temp_id": "5438649",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "105",
+ "temp_id": "5438650",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "106",
+ "temp_id": "5438651",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "107",
+ "temp_id": "5438652",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "108",
+ "temp_id": "5438653",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "109",
+ "temp_id": "5438654",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "110",
+ "temp_id": "5438655",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "111",
+ "temp_id": "5438656",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "112",
+ "temp_id": "5438657",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "113",
+ "temp_id": "5438658",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "114",
+ "temp_id": "5438659",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "115",
+ "temp_id": "5438660",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "116",
+ "temp_id": "5438661",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "117",
+ "temp_id": "5438662",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "118",
+ "temp_id": "5438663",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "119",
+ "temp_id": "5438664",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "120",
+ "temp_id": "5438665",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "121",
+ "temp_id": "5438666",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "122",
+ "temp_id": "5438667",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4346188.0000"
+ },
+ {
+ "id": "123",
+ "temp_id": "5438668",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4440585.0000"
+ },
+ {
+ "id": "124",
+ "temp_id": "5438669",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4589895.0000"
+ },
+ {
+ "id": "125",
+ "temp_id": "5438670",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4681265.0000"
+ },
+ {
+ "id": "126",
+ "temp_id": "5438671",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "127",
+ "temp_id": "5438672",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4829589.0000"
+ },
+ {
+ "id": "128",
+ "temp_id": "5438673",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "129",
+ "temp_id": "5438674",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "130",
+ "temp_id": "5438675",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "131",
+ "temp_id": "5438676",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4827616.0000"
+ },
+ {
+ "id": "132",
+ "temp_id": "5438677",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4800000.0000"
+ },
+ {
+ "id": "133",
+ "temp_id": "5438678",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4800000.0000"
+ },
+ {
+ "id": "134",
+ "temp_id": "5438679",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4829589.0000"
+ },
+ {
+ "id": "135",
+ "temp_id": "5438680",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4800000.0000"
+ },
+ {
+ "id": "136",
+ "temp_id": "5438681",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4829589.0000"
+ },
+ {
+ "id": "137",
+ "temp_id": "5438682",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "138",
+ "temp_id": "5438683",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "139",
+ "temp_id": "5438684",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "140",
+ "temp_id": "5438685",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "141",
+ "temp_id": "5438686",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "142",
+ "temp_id": "5438687",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "143",
+ "temp_id": "5438688",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "144",
+ "temp_id": "5438689",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "145",
+ "temp_id": "5438690",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "146",
+ "temp_id": "5438691",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "147",
+ "temp_id": "5438692",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "148",
+ "temp_id": "5438693",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "149",
+ "temp_id": "5438694",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "150",
+ "temp_id": "5438695",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "151",
+ "temp_id": "5438696",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "152",
+ "temp_id": "5438697",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "153",
+ "temp_id": "5438698",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "154",
+ "temp_id": "5438699",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "155",
+ "temp_id": "5438700",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "156",
+ "temp_id": "5438701",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "157",
+ "temp_id": "5438702",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "158",
+ "temp_id": "5438703",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "159",
+ "temp_id": "5438704",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "160",
+ "temp_id": "5438705",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "161",
+ "temp_id": "5438706",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "162",
+ "temp_id": "5438707",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "163",
+ "temp_id": "5438708",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "164",
+ "temp_id": "5438709",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "165",
+ "temp_id": "5438710",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "166",
+ "temp_id": "5438711",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "167",
+ "temp_id": "5438712",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "168",
+ "temp_id": "5438713",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "169",
+ "temp_id": "5438714",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "170",
+ "temp_id": "5438715",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2655792.0000"
+ },
+ {
+ "id": "171",
+ "temp_id": "5438716",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2688442.0000"
+ },
+ {
+ "id": "172",
+ "temp_id": "5438717",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2752597.0000"
+ },
+ {
+ "id": "173",
+ "temp_id": "5438718",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2784094.0000"
+ },
+ {
+ "id": "174",
+ "temp_id": "5438719",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2784094.0000"
+ },
+ {
+ "id": "175",
+ "temp_id": "5438720",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2815389.0000"
+ },
+ {
+ "id": "176",
+ "temp_id": "5438721",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2847062.0000"
+ },
+ {
+ "id": "177",
+ "temp_id": "5438722",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "178",
+ "temp_id": "5438723",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2909247.0000"
+ },
+ {
+ "id": "179",
+ "temp_id": "5438724",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2939743.0000"
+ },
+ {
+ "id": "180",
+ "temp_id": "5438725",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3001954.0000"
+ },
+ {
+ "id": "181",
+ "temp_id": "5438726",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3031870.0000"
+ },
+ {
+ "id": "182",
+ "temp_id": "5438727",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3031870.0000"
+ },
+ {
+ "id": "183",
+ "temp_id": "5438728",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3062217.0000"
+ },
+ {
+ "id": "184",
+ "temp_id": "5438729",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "4 Days Pas",
+ "CFHistory24MonthsOSAmount": "3140810.0000"
+ },
+ {
+ "id": "185",
+ "temp_id": "5438730",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3121571.0000"
+ },
+ {
+ "id": "186",
+ "temp_id": "5438731",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3101731.0000"
+ },
+ {
+ "id": "187",
+ "temp_id": "5438732",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3082095.0000"
+ },
+ {
+ "id": "188",
+ "temp_id": "5438733",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3063017.0000"
+ },
+ {
+ "id": "189",
+ "temp_id": "5438734",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3042598.0000"
+ },
+ {
+ "id": "190",
+ "temp_id": "5438735",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3022605.0000"
+ },
+ {
+ "id": "191",
+ "temp_id": "5438736",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3049589.0000"
+ },
+ {
+ "id": "192",
+ "temp_id": "5438737",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3077819.0000"
+ },
+ {
+ "id": "193",
+ "temp_id": "5438738",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3104408.0000"
+ },
+ {
+ "id": "194",
+ "temp_id": "5438739",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "195",
+ "temp_id": "5438740",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "196",
+ "temp_id": "5438741",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "197",
+ "temp_id": "5438742",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "198",
+ "temp_id": "5438743",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "199",
+ "temp_id": "5438744",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "200",
+ "temp_id": "5438745",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "201",
+ "temp_id": "5438746",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "202",
+ "temp_id": "5438747",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "203",
+ "temp_id": "5438748",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "204",
+ "temp_id": "5438749",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "205",
+ "temp_id": "5438750",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "206",
+ "temp_id": "5438751",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "207",
+ "temp_id": "5438752",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "208",
+ "temp_id": "5438753",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "209",
+ "temp_id": "5438754",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "210",
+ "temp_id": "5438755",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "211",
+ "temp_id": "5438756",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "212",
+ "temp_id": "5438757",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "213",
+ "temp_id": "5438758",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "214",
+ "temp_id": "5438759",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "215",
+ "temp_id": "5438760",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "216",
+ "temp_id": "5438761",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "217",
+ "temp_id": "5438762",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "218",
+ "temp_id": "5438763",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1280616.0000"
+ },
+ {
+ "id": "219",
+ "temp_id": "5438764",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1296073.0000"
+ },
+ {
+ "id": "220",
+ "temp_id": "5438765",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1306340.0000"
+ },
+ {
+ "id": "221",
+ "temp_id": "5438766",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1321284.0000"
+ },
+ {
+ "id": "222",
+ "temp_id": "5438767",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1341349.0000"
+ },
+ {
+ "id": "223",
+ "temp_id": "5438768",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1356161.0000"
+ },
+ {
+ "id": "224",
+ "temp_id": "5438769",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1371156.0000"
+ },
+ {
+ "id": "225",
+ "temp_id": "5438770",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "226",
+ "temp_id": "5438771",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1400593.0000"
+ },
+ {
+ "id": "227",
+ "temp_id": "5438772",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1415028.0000"
+ },
+ {
+ "id": "228",
+ "temp_id": "5438773",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1424676.0000"
+ },
+ {
+ "id": "229",
+ "temp_id": "5438774",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1458647.0000"
+ },
+ {
+ "id": "230",
+ "temp_id": "5438775",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1458647.0000"
+ },
+ {
+ "id": "231",
+ "temp_id": "5438776",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1473014.0000"
+ },
+ {
+ "id": "232",
+ "temp_id": "5438777",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "17 Days Pa",
+ "CFHistory24MonthsOSAmount": "1510300.0000"
+ },
+ {
+ "id": "233",
+ "temp_id": "5438778",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1501048.0000"
+ },
+ {
+ "id": "234",
+ "temp_id": "5438779",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1491548.0000"
+ },
+ {
+ "id": "235",
+ "temp_id": "5438780",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1482106.0000"
+ },
+ {
+ "id": "236",
+ "temp_id": "5438781",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1472930.0000"
+ },
+ {
+ "id": "237",
+ "temp_id": "5438782",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1463113.0000"
+ },
+ {
+ "id": "238",
+ "temp_id": "5438783",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1453498.0000"
+ },
+ {
+ "id": "239",
+ "temp_id": "5438784",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1466696.0000"
+ },
+ {
+ "id": "240",
+ "temp_id": "5438785",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1480487.0000"
+ },
+ {
+ "id": "241",
+ "temp_id": "5438786",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1493491.0000"
+ },
+ {
+ "id": "242",
+ "temp_id": "5438787",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "38628334.0000"
+ },
+ {
+ "id": "243",
+ "temp_id": "5438788",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "34473669.0000"
+ },
+ {
+ "id": "244",
+ "temp_id": "5438789",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "27480798.0000"
+ },
+ {
+ "id": "245",
+ "temp_id": "5438790",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "23040412.0000"
+ },
+ {
+ "id": "246",
+ "temp_id": "5438791",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "27506230.0000"
+ },
+ {
+ "id": "247",
+ "temp_id": "5438792",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "248",
+ "temp_id": "5438793",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "25148586.0000"
+ },
+ {
+ "id": "249",
+ "temp_id": "5438794",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "250",
+ "temp_id": "5438795",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "17611957.0000"
+ },
+ {
+ "id": "251",
+ "temp_id": "5438796",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "15287911.0000"
+ },
+ {
+ "id": "252",
+ "temp_id": "5438797",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19561383.0000"
+ },
+ {
+ "id": "253",
+ "temp_id": "5438798",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "9031397.0000"
+ },
+ {
+ "id": "254",
+ "temp_id": "5438799",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "8803617.0000"
+ },
+ {
+ "id": "255",
+ "temp_id": "5438800",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "5840685.0000"
+ },
+ {
+ "id": "256",
+ "temp_id": "5438801",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "15634009.0000"
+ },
+ {
+ "id": "257",
+ "temp_id": "5438802",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "10146712.0000"
+ },
+ {
+ "id": "258",
+ "temp_id": "5438803",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "20321984.0000"
+ },
+ {
+ "id": "259",
+ "temp_id": "5438804",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "20066642.0000"
+ },
+ {
+ "id": "260",
+ "temp_id": "5438805",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19986312.0000"
+ },
+ {
+ "id": "261",
+ "temp_id": "5438806",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "20331733.0000"
+ },
+ {
+ "id": "262",
+ "temp_id": "5438807",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19978669.0000"
+ },
+ {
+ "id": "263",
+ "temp_id": "5438808",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "20849702.0000"
+ },
+ {
+ "id": "264",
+ "temp_id": "5438809",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "20148879.0000"
+ },
+ {
+ "id": "265",
+ "temp_id": "5438810",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19801051.0000"
+ },
+ {
+ "id": "266",
+ "temp_id": "5438811",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3520500.0000"
+ },
+ {
+ "id": "267",
+ "temp_id": "5438812",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3627759.0000"
+ },
+ {
+ "id": "268",
+ "temp_id": "5438813",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3627759.0000"
+ },
+ {
+ "id": "269",
+ "temp_id": "5438814",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3730493.0000"
+ },
+ {
+ "id": "270",
+ "temp_id": "5438815",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3730493.0000"
+ },
+ {
+ "id": "271",
+ "temp_id": "5438816",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3780583.0000"
+ },
+ {
+ "id": "272",
+ "temp_id": "5438817",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3831348.0000"
+ },
+ {
+ "id": "273",
+ "temp_id": "5438818",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "274",
+ "temp_id": "5438819",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3930366.0000"
+ },
+ {
+ "id": "275",
+ "temp_id": "5438820",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3978579.0000"
+ },
+ {
+ "id": "276",
+ "temp_id": "5438821",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4077263.0000"
+ },
+ {
+ "id": "277",
+ "temp_id": "5438822",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4077263.0000"
+ },
+ {
+ "id": "278",
+ "temp_id": "5438823",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4124127.0000"
+ },
+ {
+ "id": "279",
+ "temp_id": "5438824",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4171801.0000"
+ },
+ {
+ "id": "280",
+ "temp_id": "5438825",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "4 Days Pas",
+ "CFHistory24MonthsOSAmount": "4305842.0000"
+ },
+ {
+ "id": "281",
+ "temp_id": "5438826",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4264140.0000"
+ },
+ {
+ "id": "282",
+ "temp_id": "5438827",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4220941.0000"
+ },
+ {
+ "id": "283",
+ "temp_id": "5438828",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4178169.0000"
+ },
+ {
+ "id": "284",
+ "temp_id": "5438829",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4137139.0000"
+ },
+ {
+ "id": "285",
+ "temp_id": "5438830",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4095216.0000"
+ },
+ {
+ "id": "286",
+ "temp_id": "5438831",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4054881.0000"
+ },
+ {
+ "id": "287",
+ "temp_id": "5438832",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4106522.0000"
+ },
+ {
+ "id": "288",
+ "temp_id": "5438833",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4160320.0000"
+ },
+ {
+ "id": "289",
+ "temp_id": "5438834",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4210891.0000"
+ },
+ {
+ "id": "290",
+ "temp_id": "5438835",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4401808.0000"
+ },
+ {
+ "id": "291",
+ "temp_id": "5438836",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4402712.0000"
+ },
+ {
+ "id": "292",
+ "temp_id": "5438837",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "293",
+ "temp_id": "5438838",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "294",
+ "temp_id": "5438839",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "295",
+ "temp_id": "5438840",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "296",
+ "temp_id": "5438841",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "297",
+ "temp_id": "5438842",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "298",
+ "temp_id": "5438843",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "299",
+ "temp_id": "5438844",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "300",
+ "temp_id": "5438845",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "301",
+ "temp_id": "5438846",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "302",
+ "temp_id": "5438847",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "303",
+ "temp_id": "5438848",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "304",
+ "temp_id": "5438849",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "305",
+ "temp_id": "5438850",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "306",
+ "temp_id": "5438851",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "307",
+ "temp_id": "5438852",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "308",
+ "temp_id": "5438853",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "309",
+ "temp_id": "5438854",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "310",
+ "temp_id": "5438855",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "311",
+ "temp_id": "5438856",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "312",
+ "temp_id": "5438857",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "313",
+ "temp_id": "5438858",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "314",
+ "temp_id": "5438859",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "315",
+ "temp_id": "5438860",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "316",
+ "temp_id": "5438861",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "317",
+ "temp_id": "5438862",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "318",
+ "temp_id": "5438863",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "319",
+ "temp_id": "5438864",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "320",
+ "temp_id": "5438865",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "321",
+ "temp_id": "5438866",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "322",
+ "temp_id": "5438867",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "323",
+ "temp_id": "5438868",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "324",
+ "temp_id": "5438869",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "325",
+ "temp_id": "5438870",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "326",
+ "temp_id": "5438871",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "327",
+ "temp_id": "5438872",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "328",
+ "temp_id": "5438873",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "329",
+ "temp_id": "5438874",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "330",
+ "temp_id": "5438875",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "331",
+ "temp_id": "5438876",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "332",
+ "temp_id": "5438877",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "333",
+ "temp_id": "5438878",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "334",
+ "temp_id": "5438879",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "335",
+ "temp_id": "5438880",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "336",
+ "temp_id": "5438881",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "337",
+ "temp_id": "5438882",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "338",
+ "temp_id": "5438883",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "894479.0000"
+ },
+ {
+ "id": "339",
+ "temp_id": "5438884",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1000001.0000"
+ },
+ {
+ "id": "340",
+ "temp_id": "5438885",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1118098.0000"
+ },
+ {
+ "id": "341",
+ "temp_id": "5438886",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1222223.0000"
+ },
+ {
+ "id": "342",
+ "temp_id": "5438887",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1341997.0000"
+ },
+ {
+ "id": "343",
+ "temp_id": "5438888",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1453527.0000"
+ },
+ {
+ "id": "344",
+ "temp_id": "5438889",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1565663.0000"
+ },
+ {
+ "id": "345",
+ "temp_id": "5438890",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "346",
+ "temp_id": "5438891",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1789329.0000"
+ },
+ {
+ "id": "347",
+ "temp_id": "5438892",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1899974.0000"
+ },
+ {
+ "id": "348",
+ "temp_id": "5438893",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "349",
+ "temp_id": "5438894",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "350",
+ "temp_id": "5438895",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2012575.0000"
+ },
+ {
+ "id": "351",
+ "temp_id": "5438896",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "352",
+ "temp_id": "5438897",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2012575.0000"
+ },
+ {
+ "id": "353",
+ "temp_id": "5438898",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2012995.0000"
+ },
+ {
+ "id": "354",
+ "temp_id": "5438899",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2012995.0000"
+ },
+ {
+ "id": "355",
+ "temp_id": "5438900",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "356",
+ "temp_id": "5438901",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "357",
+ "temp_id": "5438902",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "358",
+ "temp_id": "5438903",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "359",
+ "temp_id": "5438904",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "360",
+ "temp_id": "5438905",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "361",
+ "temp_id": "5438906",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "362",
+ "temp_id": "5438907",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "363",
+ "temp_id": "5438908",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "364",
+ "temp_id": "5438909",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "365",
+ "temp_id": "5438910",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "366",
+ "temp_id": "5438911",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "367",
+ "temp_id": "5438912",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "368",
+ "temp_id": "5438913",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "369",
+ "temp_id": "5438914",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "370",
+ "temp_id": "5438915",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "371",
+ "temp_id": "5438916",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "372",
+ "temp_id": "5438917",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "373",
+ "temp_id": "5438918",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "374",
+ "temp_id": "5438919",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "375",
+ "temp_id": "5438920",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "376",
+ "temp_id": "5438921",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "377",
+ "temp_id": "5438922",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "378",
+ "temp_id": "5438923",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "379",
+ "temp_id": "5438924",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "380",
+ "temp_id": "5438925",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "381",
+ "temp_id": "5438926",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "382",
+ "temp_id": "5438927",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "383",
+ "temp_id": "5438928",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "384",
+ "temp_id": "5438929",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "385",
+ "temp_id": "5438930",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "386",
+ "temp_id": "5438931",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "387",
+ "temp_id": "5438932",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "388",
+ "temp_id": "5438933",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "389",
+ "temp_id": "5438934",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "390",
+ "temp_id": "5438935",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "391",
+ "temp_id": "5438936",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "392",
+ "temp_id": "5438937",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "393",
+ "temp_id": "5438938",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "394",
+ "temp_id": "5438939",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "395",
+ "temp_id": "5438940",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "396",
+ "temp_id": "5438941",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "397",
+ "temp_id": "5438942",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "398",
+ "temp_id": "5438943",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "399",
+ "temp_id": "5438944",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "400",
+ "temp_id": "5438945",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "401",
+ "temp_id": "5438946",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "402",
+ "temp_id": "5438947",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "403",
+ "temp_id": "5438948",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "404",
+ "temp_id": "5438949",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "405",
+ "temp_id": "5438950",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "406",
+ "temp_id": "5438951",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "407",
+ "temp_id": "5438952",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "408",
+ "temp_id": "5438953",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "409",
+ "temp_id": "5438954",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "410",
+ "temp_id": "5438955",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1368521.0000"
+ },
+ {
+ "id": "411",
+ "temp_id": "5438956",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1401761.0000"
+ },
+ {
+ "id": "412",
+ "temp_id": "5438957",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1435187.0000"
+ },
+ {
+ "id": "413",
+ "temp_id": "5438958",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1467479.0000"
+ },
+ {
+ "id": "414",
+ "temp_id": "5438959",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500000.0000"
+ },
+ {
+ "id": "415",
+ "temp_id": "5438960",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500000.0000"
+ },
+ {
+ "id": "416",
+ "temp_id": "5438961",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "417",
+ "temp_id": "5438962",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "418",
+ "temp_id": "5438963",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "419",
+ "temp_id": "5438964",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "420",
+ "temp_id": "5438965",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "421",
+ "temp_id": "5438966",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "422",
+ "temp_id": "5438967",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "423",
+ "temp_id": "5438968",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "424",
+ "temp_id": "5438969",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "425",
+ "temp_id": "5438970",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "426",
+ "temp_id": "5438971",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "427",
+ "temp_id": "5438972",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "428",
+ "temp_id": "5438973",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "429",
+ "temp_id": "5438974",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "430",
+ "temp_id": "5438975",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "431",
+ "temp_id": "5438976",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "432",
+ "temp_id": "5438977",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "433",
+ "temp_id": "5438978",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "434",
+ "temp_id": "5438979",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "435",
+ "temp_id": "5438980",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "436",
+ "temp_id": "5438981",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "437",
+ "temp_id": "5438982",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "438",
+ "temp_id": "5438983",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "439",
+ "temp_id": "5438984",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "440",
+ "temp_id": "5438985",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "441",
+ "temp_id": "5438986",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "442",
+ "temp_id": "5438987",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "443",
+ "temp_id": "5438988",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "444",
+ "temp_id": "5438989",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "445",
+ "temp_id": "5438990",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "446",
+ "temp_id": "5438991",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "447",
+ "temp_id": "5438992",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "448",
+ "temp_id": "5438993",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "449",
+ "temp_id": "5438994",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "450",
+ "temp_id": "5438995",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "451",
+ "temp_id": "5438996",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "452",
+ "temp_id": "5438997",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "453",
+ "temp_id": "5438998",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "454",
+ "temp_id": "5438999",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "455",
+ "temp_id": "5439000",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "456",
+ "temp_id": "5439001",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "457",
+ "temp_id": "5439002",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "458",
+ "temp_id": "5439003",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "459",
+ "temp_id": "5439004",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "460",
+ "temp_id": "5439005",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "461",
+ "temp_id": "5439006",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "462",
+ "temp_id": "5439007",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "463",
+ "temp_id": "5439008",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "464",
+ "temp_id": "5439009",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "465",
+ "temp_id": "5439010",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "466",
+ "temp_id": "5439011",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "467",
+ "temp_id": "5439012",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "468",
+ "temp_id": "5439013",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "469",
+ "temp_id": "5439014",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "470",
+ "temp_id": "5439015",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "471",
+ "temp_id": "5439016",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "472",
+ "temp_id": "5439017",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "473",
+ "temp_id": "5439018",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "474",
+ "temp_id": "5439019",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "475",
+ "temp_id": "5439020",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "476",
+ "temp_id": "5439021",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "477",
+ "temp_id": "5439022",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "478",
+ "temp_id": "5439023",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "7 Days Pas",
+ "CFHistory24MonthsOSAmount": "2776705.0000"
+ },
+ {
+ "id": "479",
+ "temp_id": "5439024",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1315.0000"
+ },
+ {
+ "id": "480",
+ "temp_id": "5439025",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "1 Day Past",
+ "CFHistory24MonthsOSAmount": "677695.0000"
+ },
+ {
+ "id": "481",
+ "temp_id": "5439026",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "482",
+ "temp_id": "5439027",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "483",
+ "temp_id": "5439028",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "484",
+ "temp_id": "5439029",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "485",
+ "temp_id": "5439030",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "486",
+ "temp_id": "5439031",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "487",
+ "temp_id": "5439032",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "488",
+ "temp_id": "5439033",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "489",
+ "temp_id": "5439034",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "490",
+ "temp_id": "5439035",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "491",
+ "temp_id": "5439036",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "492",
+ "temp_id": "5439037",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "493",
+ "temp_id": "5439038",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "494",
+ "temp_id": "5439039",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "495",
+ "temp_id": "5439040",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "496",
+ "temp_id": "5439041",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "497",
+ "temp_id": "5439042",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "498",
+ "temp_id": "5439043",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "499",
+ "temp_id": "5439044",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "500",
+ "temp_id": "5439045",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "501",
+ "temp_id": "5439046",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "502",
+ "temp_id": "5439047",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "503",
+ "temp_id": "5439048",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "504",
+ "temp_id": "5439049",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "505",
+ "temp_id": "5439050",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "506",
+ "temp_id": "5439051",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "507",
+ "temp_id": "5439052",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "508",
+ "temp_id": "5439053",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "509",
+ "temp_id": "5439054",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "510",
+ "temp_id": "5439055",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "511",
+ "temp_id": "5439056",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "512",
+ "temp_id": "5439057",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "513",
+ "temp_id": "5439058",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "514",
+ "temp_id": "5439059",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "515",
+ "temp_id": "5439060",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "516",
+ "temp_id": "5439061",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "517",
+ "temp_id": "5439062",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "518",
+ "temp_id": "5439063",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "519",
+ "temp_id": "5439064",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "520",
+ "temp_id": "5439065",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "521",
+ "temp_id": "5439066",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "522",
+ "temp_id": "5439067",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "523",
+ "temp_id": "5439068",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "524",
+ "temp_id": "5439069",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "525",
+ "temp_id": "5439070",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "526",
+ "temp_id": "5439071",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "527",
+ "temp_id": "5439072",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "528",
+ "temp_id": "5439073",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "529",
+ "temp_id": "5439074",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "530",
+ "temp_id": "5439075",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "531",
+ "temp_id": "5439076",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "532",
+ "temp_id": "5439077",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "533",
+ "temp_id": "5439078",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "534",
+ "temp_id": "5439079",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "535",
+ "temp_id": "5439080",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "536",
+ "temp_id": "5439081",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "537",
+ "temp_id": "5439082",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "538",
+ "temp_id": "5439083",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "539",
+ "temp_id": "5439084",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "540",
+ "temp_id": "5439085",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "541",
+ "temp_id": "5439086",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "542",
+ "temp_id": "5439087",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "543",
+ "temp_id": "5439088",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "544",
+ "temp_id": "5439089",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "545",
+ "temp_id": "5439090",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "546",
+ "temp_id": "5439091",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "547",
+ "temp_id": "5439092",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "548",
+ "temp_id": "5439093",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "549",
+ "temp_id": "5439094",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "550",
+ "temp_id": "5439095",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "551",
+ "temp_id": "5439096",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "552",
+ "temp_id": "5439097",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "553",
+ "temp_id": "5439098",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "554",
+ "temp_id": "5439099",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "555",
+ "temp_id": "5439100",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "556",
+ "temp_id": "5439101",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "557",
+ "temp_id": "5439102",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "558",
+ "temp_id": "5439103",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "559",
+ "temp_id": "5439104",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "560",
+ "temp_id": "5439105",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "561",
+ "temp_id": "5439106",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "562",
+ "temp_id": "5439107",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "563",
+ "temp_id": "5439108",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "564",
+ "temp_id": "5439109",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "565",
+ "temp_id": "5439110",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "566",
+ "temp_id": "5439111",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "567",
+ "temp_id": "5439112",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "568",
+ "temp_id": "5439113",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "569",
+ "temp_id": "5439114",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "570",
+ "temp_id": "5439115",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "571",
+ "temp_id": "5439116",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "572",
+ "temp_id": "5439117",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "573",
+ "temp_id": "5439118",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "574",
+ "temp_id": "5439119",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "575",
+ "temp_id": "5439120",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "576",
+ "temp_id": "5439121",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "577",
+ "temp_id": "5439122",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "578",
+ "temp_id": "5439123",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "579",
+ "temp_id": "5439124",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "580",
+ "temp_id": "5439125",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "581",
+ "temp_id": "5439126",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "582",
+ "temp_id": "5439127",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "583",
+ "temp_id": "5439128",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "584",
+ "temp_id": "5439129",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "585",
+ "temp_id": "5439130",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "586",
+ "temp_id": "5439131",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "587",
+ "temp_id": "5439132",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "588",
+ "temp_id": "5439133",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "589",
+ "temp_id": "5439134",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "590",
+ "temp_id": "5439135",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "591",
+ "temp_id": "5439136",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "592",
+ "temp_id": "5439137",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "593",
+ "temp_id": "5439138",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "594",
+ "temp_id": "5439139",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "595",
+ "temp_id": "5439140",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "596",
+ "temp_id": "5439141",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "597",
+ "temp_id": "5439142",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "598",
+ "temp_id": "5439143",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "599",
+ "temp_id": "5439144",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "600",
+ "temp_id": "5439145",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "601",
+ "temp_id": "5439146",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "602",
+ "temp_id": "5439147",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "603",
+ "temp_id": "5439148",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "604",
+ "temp_id": "5439149",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "605",
+ "temp_id": "5439150",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "606",
+ "temp_id": "5439151",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "607",
+ "temp_id": "5439152",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "608",
+ "temp_id": "5439153",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "609",
+ "temp_id": "5439154",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "610",
+ "temp_id": "5439155",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "611",
+ "temp_id": "5439156",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "612",
+ "temp_id": "5439157",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "613",
+ "temp_id": "5439158",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "614",
+ "temp_id": "5439159",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "615",
+ "temp_id": "5439160",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "616",
+ "temp_id": "5439161",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "617",
+ "temp_id": "5439162",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "618",
+ "temp_id": "5439163",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "619",
+ "temp_id": "5439164",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "620",
+ "temp_id": "5439165",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "621",
+ "temp_id": "5439166",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "622",
+ "temp_id": "5439167",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "623",
+ "temp_id": "5439168",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "624",
+ "temp_id": "5439169",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "625",
+ "temp_id": "5439170",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "626",
+ "temp_id": "5439171",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "627",
+ "temp_id": "5439172",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "628",
+ "temp_id": "5439173",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "629",
+ "temp_id": "5439174",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "630",
+ "temp_id": "5439175",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "631",
+ "temp_id": "5439176",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "632",
+ "temp_id": "5439177",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "633",
+ "temp_id": "5439178",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "634",
+ "temp_id": "5439179",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "635",
+ "temp_id": "5439180",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "636",
+ "temp_id": "5439181",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "637",
+ "temp_id": "5439182",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "638",
+ "temp_id": "5439183",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "639",
+ "temp_id": "5439184",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "640",
+ "temp_id": "5439185",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "641",
+ "temp_id": "5439186",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "642",
+ "temp_id": "5439187",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "643",
+ "temp_id": "5439188",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "644",
+ "temp_id": "5439189",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "645",
+ "temp_id": "5439190",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "646",
+ "temp_id": "5439191",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "647",
+ "temp_id": "5439192",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "648",
+ "temp_id": "5439193",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "649",
+ "temp_id": "5439194",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "650",
+ "temp_id": "5439195",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "651",
+ "temp_id": "5439196",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "652",
+ "temp_id": "5439197",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "653",
+ "temp_id": "5439198",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "654",
+ "temp_id": "5439199",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "655",
+ "temp_id": "5439200",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "656",
+ "temp_id": "5439201",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "657",
+ "temp_id": "5439202",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "658",
+ "temp_id": "5439203",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "659",
+ "temp_id": "5439204",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "660",
+ "temp_id": "5439205",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "661",
+ "temp_id": "5439206",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "662",
+ "temp_id": "5439207",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "663",
+ "temp_id": "5439208",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "664",
+ "temp_id": "5439209",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "665",
+ "temp_id": "5439210",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "666",
+ "temp_id": "5439211",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "667",
+ "temp_id": "5439212",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "668",
+ "temp_id": "5439213",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "669",
+ "temp_id": "5439214",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "670",
+ "temp_id": "5439215",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "671",
+ "temp_id": "5439216",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "672",
+ "temp_id": "5439217",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "673",
+ "temp_id": "5439218",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "674",
+ "temp_id": "5439219",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "675",
+ "temp_id": "5439220",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "676",
+ "temp_id": "5439221",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "677",
+ "temp_id": "5439222",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "678",
+ "temp_id": "5439223",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "679",
+ "temp_id": "5439224",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "680",
+ "temp_id": "5439225",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "681",
+ "temp_id": "5439226",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "682",
+ "temp_id": "5439227",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "683",
+ "temp_id": "5439228",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "684",
+ "temp_id": "5439229",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "685",
+ "temp_id": "5439230",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "686",
+ "temp_id": "5439231",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "687",
+ "temp_id": "5439232",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "688",
+ "temp_id": "5439233",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "689",
+ "temp_id": "5439234",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "690",
+ "temp_id": "5439235",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "691",
+ "temp_id": "5439236",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "692",
+ "temp_id": "5439237",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "693",
+ "temp_id": "5439238",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "694",
+ "temp_id": "5439239",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "695",
+ "temp_id": "5439240",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "696",
+ "temp_id": "5439241",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "697",
+ "temp_id": "5439242",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "698",
+ "temp_id": "5439243",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "699",
+ "temp_id": "5439244",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "700",
+ "temp_id": "5439245",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "701",
+ "temp_id": "5439246",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "702",
+ "temp_id": "5439247",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "703",
+ "temp_id": "5439248",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "704",
+ "temp_id": "5439249",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "705",
+ "temp_id": "5439250",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "706",
+ "temp_id": "5439251",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "707",
+ "temp_id": "5439252",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "708",
+ "temp_id": "5439253",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "709",
+ "temp_id": "5439254",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "710",
+ "temp_id": "5439255",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "711",
+ "temp_id": "5439256",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "712",
+ "temp_id": "5439257",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "713",
+ "temp_id": "5439258",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "714",
+ "temp_id": "5439259",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "715",
+ "temp_id": "5439260",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "716",
+ "temp_id": "5439261",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "717",
+ "temp_id": "5439262",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "718",
+ "temp_id": "5439263",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "719",
+ "temp_id": "5439264",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "720",
+ "temp_id": "5439265",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "721",
+ "temp_id": "5439266",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "722",
+ "temp_id": "5439267",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "723",
+ "temp_id": "5439268",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "724",
+ "temp_id": "5439269",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "725",
+ "temp_id": "5439270",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "726",
+ "temp_id": "5439271",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "727",
+ "temp_id": "5439272",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "728",
+ "temp_id": "5439273",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "729",
+ "temp_id": "5439274",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "730",
+ "temp_id": "5439275",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "731",
+ "temp_id": "5439276",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "732",
+ "temp_id": "5439277",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "733",
+ "temp_id": "5439278",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "734",
+ "temp_id": "5439279",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "735",
+ "temp_id": "5439280",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "736",
+ "temp_id": "5439281",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "737",
+ "temp_id": "5439282",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "738",
+ "temp_id": "5439283",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "739",
+ "temp_id": "5439284",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "740",
+ "temp_id": "5439285",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "741",
+ "temp_id": "5439286",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "742",
+ "temp_id": "5439287",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "743",
+ "temp_id": "5439288",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "744",
+ "temp_id": "5439289",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "745",
+ "temp_id": "5439290",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "746",
+ "temp_id": "5439291",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "747",
+ "temp_id": "5439292",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "748",
+ "temp_id": "5439293",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "749",
+ "temp_id": "5439294",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "750",
+ "temp_id": "5439295",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "751",
+ "temp_id": "5439296",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "752",
+ "temp_id": "5439297",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "753",
+ "temp_id": "5439298",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "754",
+ "temp_id": "5439299",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "755",
+ "temp_id": "5439300",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "756",
+ "temp_id": "5439301",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "757",
+ "temp_id": "5439302",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "758",
+ "temp_id": "5439303",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "759",
+ "temp_id": "5439304",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "760",
+ "temp_id": "5439305",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "761",
+ "temp_id": "5439306",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "762",
+ "temp_id": "5439307",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "763",
+ "temp_id": "5439308",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "764",
+ "temp_id": "5439309",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "765",
+ "temp_id": "5439310",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "766",
+ "temp_id": "5439311",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "767",
+ "temp_id": "5439312",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "768",
+ "temp_id": "5439313",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "769",
+ "temp_id": "5439314",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "770",
+ "temp_id": "5439315",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "771",
+ "temp_id": "5439316",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "772",
+ "temp_id": "5439317",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "773",
+ "temp_id": "5439318",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "774",
+ "temp_id": "5439319",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "775",
+ "temp_id": "5439320",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "776",
+ "temp_id": "5439321",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "777",
+ "temp_id": "5439322",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "778",
+ "temp_id": "5439323",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "779",
+ "temp_id": "5439324",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "780",
+ "temp_id": "5439325",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "781",
+ "temp_id": "5439326",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "782",
+ "temp_id": "5439327",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "783",
+ "temp_id": "5439328",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "784",
+ "temp_id": "5439329",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "785",
+ "temp_id": "5439330",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "786",
+ "temp_id": "5439331",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "787",
+ "temp_id": "5439332",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "788",
+ "temp_id": "5439333",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "789",
+ "temp_id": "5439334",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "790",
+ "temp_id": "5439335",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "791",
+ "temp_id": "5439336",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "792",
+ "temp_id": "5439337",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "793",
+ "temp_id": "5439338",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "794",
+ "temp_id": "5439339",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "795",
+ "temp_id": "5439340",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "796",
+ "temp_id": "5439341",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "797",
+ "temp_id": "5439342",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "798",
+ "temp_id": "5439343",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "799",
+ "temp_id": "5439344",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "800",
+ "temp_id": "5439345",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "801",
+ "temp_id": "5439346",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "802",
+ "temp_id": "5439347",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "803",
+ "temp_id": "5439348",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "804",
+ "temp_id": "5439349",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "805",
+ "temp_id": "5439350",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "806",
+ "temp_id": "5439351",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "807",
+ "temp_id": "5439352",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "808",
+ "temp_id": "5439353",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "809",
+ "temp_id": "5439354",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "810",
+ "temp_id": "5439355",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "811",
+ "temp_id": "5439356",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "812",
+ "temp_id": "5439357",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "813",
+ "temp_id": "5439358",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "814",
+ "temp_id": "5439359",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "815",
+ "temp_id": "5439360",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "816",
+ "temp_id": "5439361",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "817",
+ "temp_id": "5439362",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "818",
+ "temp_id": "5439363",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "819",
+ "temp_id": "5439364",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "820",
+ "temp_id": "5439365",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "821",
+ "temp_id": "5439366",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "822",
+ "temp_id": "5439367",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "823",
+ "temp_id": "5439368",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "824",
+ "temp_id": "5439369",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "825",
+ "temp_id": "5439370",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "826",
+ "temp_id": "5439371",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "827",
+ "temp_id": "5439372",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "828",
+ "temp_id": "5439373",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "829",
+ "temp_id": "5439374",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "830",
+ "temp_id": "5439375",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "831",
+ "temp_id": "5439376",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "832",
+ "temp_id": "5439377",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "833",
+ "temp_id": "5439378",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "834",
+ "temp_id": "5439379",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "835",
+ "temp_id": "5439380",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "836",
+ "temp_id": "5439381",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "837",
+ "temp_id": "5439382",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "838",
+ "temp_id": "5439383",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "839",
+ "temp_id": "5439384",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "840",
+ "temp_id": "5439385",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "841",
+ "temp_id": "5439386",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "842",
+ "temp_id": "5439387",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "843",
+ "temp_id": "5439388",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "844",
+ "temp_id": "5439389",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "845",
+ "temp_id": "5439390",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "846",
+ "temp_id": "5439391",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "847",
+ "temp_id": "5439392",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "848",
+ "temp_id": "5439393",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "849",
+ "temp_id": "5439394",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "850",
+ "temp_id": "5439395",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "851",
+ "temp_id": "5439396",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "852",
+ "temp_id": "5439397",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "853",
+ "temp_id": "5439398",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "854",
+ "temp_id": "5439399",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "855",
+ "temp_id": "5439400",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "856",
+ "temp_id": "5439401",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "857",
+ "temp_id": "5439402",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "858",
+ "temp_id": "5439403",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "859",
+ "temp_id": "5439404",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "860",
+ "temp_id": "5439405",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "861",
+ "temp_id": "5439406",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "862",
+ "temp_id": "5439407",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "863",
+ "temp_id": "5439408",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "864",
+ "temp_id": "5439409",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "865",
+ "temp_id": "5439410",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "866",
+ "temp_id": "5439411",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "867",
+ "temp_id": "5439412",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "868",
+ "temp_id": "5439413",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "869",
+ "temp_id": "5439414",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "870",
+ "temp_id": "5439415",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "871",
+ "temp_id": "5439416",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "872",
+ "temp_id": "5439417",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "873",
+ "temp_id": "5439418",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "874",
+ "temp_id": "5439419",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "875",
+ "temp_id": "5439420",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "876",
+ "temp_id": "5439421",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "877",
+ "temp_id": "5439422",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "878",
+ "temp_id": "5439423",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "879",
+ "temp_id": "5439424",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "880",
+ "temp_id": "5439425",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "881",
+ "temp_id": "5439426",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "882",
+ "temp_id": "5439427",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "883",
+ "temp_id": "5439428",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "884",
+ "temp_id": "5439429",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "885",
+ "temp_id": "5439430",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "886",
+ "temp_id": "5439431",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "887",
+ "temp_id": "5439432",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "888",
+ "temp_id": "5439433",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "889",
+ "temp_id": "5439434",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "890",
+ "temp_id": "5439435",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "891",
+ "temp_id": "5439436",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "892",
+ "temp_id": "5439437",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "893",
+ "temp_id": "5439438",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "894",
+ "temp_id": "5439439",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "895",
+ "temp_id": "5439440",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "896",
+ "temp_id": "5439441",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "897",
+ "temp_id": "5439442",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "898",
+ "temp_id": "5439443",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "899",
+ "temp_id": "5439444",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "900",
+ "temp_id": "5439445",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "901",
+ "temp_id": "5439446",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "902",
+ "temp_id": "5439447",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "903",
+ "temp_id": "5439448",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "904",
+ "temp_id": "5439449",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "905",
+ "temp_id": "5439450",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "906",
+ "temp_id": "5439451",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "907",
+ "temp_id": "5439452",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "908",
+ "temp_id": "5439453",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "909",
+ "temp_id": "5439454",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "910",
+ "temp_id": "5439455",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "911",
+ "temp_id": "5439456",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "912",
+ "temp_id": "5439457",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "913",
+ "temp_id": "5439458",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "914",
+ "temp_id": "5439459",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3300000.0000"
+ },
+ {
+ "id": "915",
+ "temp_id": "5439460",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "916",
+ "temp_id": "5439461",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "917",
+ "temp_id": "5439462",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "918",
+ "temp_id": "5439463",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "919",
+ "temp_id": "5439464",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "920",
+ "temp_id": "5439465",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "921",
+ "temp_id": "5439466",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "922",
+ "temp_id": "5439467",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "923",
+ "temp_id": "5439468",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "924",
+ "temp_id": "5439469",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "925",
+ "temp_id": "5439470",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "926",
+ "temp_id": "5439471",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "927",
+ "temp_id": "5439472",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "928",
+ "temp_id": "5439473",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "929",
+ "temp_id": "5439474",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "930",
+ "temp_id": "5439475",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "931",
+ "temp_id": "5439476",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "932",
+ "temp_id": "5439477",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "933",
+ "temp_id": "5439478",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "934",
+ "temp_id": "5439479",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "935",
+ "temp_id": "5439480",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "936",
+ "temp_id": "5439481",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "937",
+ "temp_id": "5439482",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "938",
+ "temp_id": "5439483",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "939",
+ "temp_id": "5439484",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "940",
+ "temp_id": "5439485",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "941",
+ "temp_id": "5439486",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "942",
+ "temp_id": "5439487",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "943",
+ "temp_id": "5439488",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "944",
+ "temp_id": "5439489",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "945",
+ "temp_id": "5439490",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "946",
+ "temp_id": "5439491",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "947",
+ "temp_id": "5439492",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "948",
+ "temp_id": "5439493",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "949",
+ "temp_id": "5439494",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "950",
+ "temp_id": "5439495",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "951",
+ "temp_id": "5439496",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "952",
+ "temp_id": "5439497",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "953",
+ "temp_id": "5439498",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "954",
+ "temp_id": "5439499",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "955",
+ "temp_id": "5439500",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "956",
+ "temp_id": "5439501",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "957",
+ "temp_id": "5439502",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "958",
+ "temp_id": "5439503",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "959",
+ "temp_id": "5439504",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "960",
+ "temp_id": "5439505",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "961",
+ "temp_id": "5439506",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "962",
+ "temp_id": "5439507",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "963",
+ "temp_id": "5439508",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "964",
+ "temp_id": "5439509",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "965",
+ "temp_id": "5439510",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "966",
+ "temp_id": "5439511",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "967",
+ "temp_id": "5439512",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "968",
+ "temp_id": "5439513",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "969",
+ "temp_id": "5439514",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "970",
+ "temp_id": "5439515",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "971",
+ "temp_id": "5439516",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "972",
+ "temp_id": "5439517",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "973",
+ "temp_id": "5439518",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "974",
+ "temp_id": "5439519",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "975",
+ "temp_id": "5439520",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "976",
+ "temp_id": "5439521",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "977",
+ "temp_id": "5439522",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "978",
+ "temp_id": "5439523",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "979",
+ "temp_id": "5439524",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "980",
+ "temp_id": "5439525",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "981",
+ "temp_id": "5439526",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "982",
+ "temp_id": "5439527",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "983",
+ "temp_id": "5439528",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "984",
+ "temp_id": "5439529",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "985",
+ "temp_id": "5439530",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "986",
+ "temp_id": "5439531",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "987",
+ "temp_id": "5439532",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "988",
+ "temp_id": "5439533",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "989",
+ "temp_id": "5439534",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "990",
+ "temp_id": "5439535",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "991",
+ "temp_id": "5439536",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "992",
+ "temp_id": "5439537",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "993",
+ "temp_id": "5439538",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "994",
+ "temp_id": "5439539",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "995",
+ "temp_id": "5439540",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "996",
+ "temp_id": "5439541",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "997",
+ "temp_id": "5439542",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "998",
+ "temp_id": "5439543",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "999",
+ "temp_id": "5439544",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1000",
+ "temp_id": "5439545",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1001",
+ "temp_id": "5439546",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1002",
+ "temp_id": "5439547",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1003",
+ "temp_id": "5439548",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1004",
+ "temp_id": "5439549",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1005",
+ "temp_id": "5439550",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1006",
+ "temp_id": "5439551",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1007",
+ "temp_id": "5439552",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1008",
+ "temp_id": "5439553",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1009",
+ "temp_id": "5439554",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1010",
+ "temp_id": "5439555",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1011",
+ "temp_id": "5439556",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1012",
+ "temp_id": "5439557",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1013",
+ "temp_id": "5439558",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1014",
+ "temp_id": "5439559",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1015",
+ "temp_id": "5439560",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1016",
+ "temp_id": "5439561",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1017",
+ "temp_id": "5439562",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1018",
+ "temp_id": "5439563",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1019",
+ "temp_id": "5439564",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1020",
+ "temp_id": "5439565",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1021",
+ "temp_id": "5439566",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1022",
+ "temp_id": "5439567",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1023",
+ "temp_id": "5439568",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1024",
+ "temp_id": "5439569",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1025",
+ "temp_id": "5439570",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1026",
+ "temp_id": "5439571",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1027",
+ "temp_id": "5439572",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1028",
+ "temp_id": "5439573",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1029",
+ "temp_id": "5439574",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1030",
+ "temp_id": "5439575",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1031",
+ "temp_id": "5439576",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1032",
+ "temp_id": "5439577",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1033",
+ "temp_id": "5439578",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1034",
+ "temp_id": "5439579",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1035",
+ "temp_id": "5439580",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1036",
+ "temp_id": "5439581",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1037",
+ "temp_id": "5439582",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1038",
+ "temp_id": "5439583",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1039",
+ "temp_id": "5439584",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1040",
+ "temp_id": "5439585",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1041",
+ "temp_id": "5439586",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1042",
+ "temp_id": "5439587",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1043",
+ "temp_id": "5439588",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1044",
+ "temp_id": "5439589",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1045",
+ "temp_id": "5439590",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1046",
+ "temp_id": "5439591",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1047",
+ "temp_id": "5439592",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1048",
+ "temp_id": "5439593",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1049",
+ "temp_id": "5439594",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1050",
+ "temp_id": "5439595",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1051",
+ "temp_id": "5439596",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1052",
+ "temp_id": "5439597",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1053",
+ "temp_id": "5439598",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1054",
+ "temp_id": "5439599",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1055",
+ "temp_id": "5439600",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1056",
+ "temp_id": "5439601",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1057",
+ "temp_id": "5439602",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1058",
+ "temp_id": "5439603",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1059",
+ "temp_id": "5439604",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1060",
+ "temp_id": "5439605",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1061",
+ "temp_id": "5439606",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1062",
+ "temp_id": "5439607",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1063",
+ "temp_id": "5439608",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1064",
+ "temp_id": "5439609",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1065",
+ "temp_id": "5439610",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1066",
+ "temp_id": "5439611",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1067",
+ "temp_id": "5439612",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1068",
+ "temp_id": "5439613",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1069",
+ "temp_id": "5439614",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1070",
+ "temp_id": "5439615",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1071",
+ "temp_id": "5439616",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1072",
+ "temp_id": "5439617",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1073",
+ "temp_id": "5439618",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1074",
+ "temp_id": "5439619",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1075",
+ "temp_id": "5439620",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1076",
+ "temp_id": "5439621",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1077",
+ "temp_id": "5439622",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1078",
+ "temp_id": "5439623",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1079",
+ "temp_id": "5439624",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1080",
+ "temp_id": "5439625",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1081",
+ "temp_id": "5439626",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1082",
+ "temp_id": "5439627",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1083",
+ "temp_id": "5439628",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1084",
+ "temp_id": "5439629",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1085",
+ "temp_id": "5439630",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1086",
+ "temp_id": "5439631",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1087",
+ "temp_id": "5439632",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1088",
+ "temp_id": "5439633",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1089",
+ "temp_id": "5439634",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1090",
+ "temp_id": "5439635",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1091",
+ "temp_id": "5439636",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1092",
+ "temp_id": "5439637",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1093",
+ "temp_id": "5439638",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1094",
+ "temp_id": "5439639",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1095",
+ "temp_id": "5439640",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1096",
+ "temp_id": "5439641",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1097",
+ "temp_id": "5439642",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1098",
+ "temp_id": "5439643",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1099",
+ "temp_id": "5439644",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1100",
+ "temp_id": "5439645",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1101",
+ "temp_id": "5439646",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1102",
+ "temp_id": "5439647",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1103",
+ "temp_id": "5439648",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1104",
+ "temp_id": "5439649",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1105",
+ "temp_id": "5439650",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1106",
+ "temp_id": "5439651",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1107",
+ "temp_id": "5439652",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1108",
+ "temp_id": "5439653",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1109",
+ "temp_id": "5439654",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1110",
+ "temp_id": "5439655",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1111",
+ "temp_id": "5439656",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1112",
+ "temp_id": "5439657",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1113",
+ "temp_id": "5439658",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1114",
+ "temp_id": "5439659",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1115",
+ "temp_id": "5439660",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1116",
+ "temp_id": "5439661",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1117",
+ "temp_id": "5439662",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1118",
+ "temp_id": "5439663",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1119",
+ "temp_id": "5439664",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1120",
+ "temp_id": "5439665",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1121",
+ "temp_id": "5439666",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1122",
+ "temp_id": "5439667",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1123",
+ "temp_id": "5439668",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1124",
+ "temp_id": "5439669",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1125",
+ "temp_id": "5439670",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1126",
+ "temp_id": "5439671",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1127",
+ "temp_id": "5439672",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1128",
+ "temp_id": "5439673",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1129",
+ "temp_id": "5439674",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1130",
+ "temp_id": "5439675",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1131",
+ "temp_id": "5439676",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1132",
+ "temp_id": "5439677",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1133",
+ "temp_id": "5439678",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1134",
+ "temp_id": "5439679",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1135",
+ "temp_id": "5439680",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1136",
+ "temp_id": "5439681",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1137",
+ "temp_id": "5439682",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1138",
+ "temp_id": "5439683",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1139",
+ "temp_id": "5439684",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1140",
+ "temp_id": "5439685",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1141",
+ "temp_id": "5439686",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1142",
+ "temp_id": "5439687",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1143",
+ "temp_id": "5439688",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1144",
+ "temp_id": "5439689",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1145",
+ "temp_id": "5439690",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1146",
+ "temp_id": "5439691",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1147",
+ "temp_id": "5439692",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1148",
+ "temp_id": "5439693",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1149",
+ "temp_id": "5439694",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1150",
+ "temp_id": "5439695",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1151",
+ "temp_id": "5439696",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1152",
+ "temp_id": "5439697",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1153",
+ "temp_id": "5439698",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1154",
+ "temp_id": "5439699",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1155",
+ "temp_id": "5439700",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1156",
+ "temp_id": "5439701",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1157",
+ "temp_id": "5439702",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1158",
+ "temp_id": "5439703",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1159",
+ "temp_id": "5439704",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1160",
+ "temp_id": "5439705",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1161",
+ "temp_id": "5439706",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1162",
+ "temp_id": "5439707",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1163",
+ "temp_id": "5439708",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1164",
+ "temp_id": "5439709",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1165",
+ "temp_id": "5439710",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1166",
+ "temp_id": "5439711",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1167",
+ "temp_id": "5439712",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1168",
+ "temp_id": "5439713",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1169",
+ "temp_id": "5439714",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1170",
+ "temp_id": "5439715",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1171",
+ "temp_id": "5439716",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1172",
+ "temp_id": "5439717",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1173",
+ "temp_id": "5439718",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1174",
+ "temp_id": "5439719",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1175",
+ "temp_id": "5439720",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1176",
+ "temp_id": "5439721",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1177",
+ "temp_id": "5439722",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1178",
+ "temp_id": "5439723",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1179",
+ "temp_id": "5439724",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1180",
+ "temp_id": "5439725",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1181",
+ "temp_id": "5439726",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1182",
+ "temp_id": "5439727",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1183",
+ "temp_id": "5439728",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1184",
+ "temp_id": "5439729",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1185",
+ "temp_id": "5439730",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1186",
+ "temp_id": "5439731",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1187",
+ "temp_id": "5439732",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1188",
+ "temp_id": "5439733",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1189",
+ "temp_id": "5439734",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1190",
+ "temp_id": "5439735",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1191",
+ "temp_id": "5439736",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1192",
+ "temp_id": "5439737",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1193",
+ "temp_id": "5439738",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1194",
+ "temp_id": "5439739",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1195",
+ "temp_id": "5439740",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1196",
+ "temp_id": "5439741",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1197",
+ "temp_id": "5439742",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1198",
+ "temp_id": "5439743",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1199",
+ "temp_id": "5439744",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1200",
+ "temp_id": "5439745",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1201",
+ "temp_id": "5439746",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1202",
+ "temp_id": "5439747",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "103461.0000"
+ },
+ {
+ "id": "1203",
+ "temp_id": "5439748",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1204",
+ "temp_id": "5439749",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1205",
+ "temp_id": "5439750",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1206",
+ "temp_id": "5439751",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1207",
+ "temp_id": "5439752",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1208",
+ "temp_id": "5439753",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1209",
+ "temp_id": "5439754",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1210",
+ "temp_id": "5439755",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1211",
+ "temp_id": "5439756",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1212",
+ "temp_id": "5439757",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1213",
+ "temp_id": "5439758",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1214",
+ "temp_id": "5439759",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1215",
+ "temp_id": "5439760",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1216",
+ "temp_id": "5439761",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1217",
+ "temp_id": "5439762",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1218",
+ "temp_id": "5439763",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1219",
+ "temp_id": "5439764",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1220",
+ "temp_id": "5439765",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1221",
+ "temp_id": "5439766",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1222",
+ "temp_id": "5439767",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1223",
+ "temp_id": "5439768",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1224",
+ "temp_id": "5439769",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1225",
+ "temp_id": "5439770",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1226",
+ "temp_id": "5439771",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1227",
+ "temp_id": "5439772",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1228",
+ "temp_id": "5439773",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1229",
+ "temp_id": "5439774",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1230",
+ "temp_id": "5439775",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1231",
+ "temp_id": "5439776",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1232",
+ "temp_id": "5439777",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1233",
+ "temp_id": "5439778",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1234",
+ "temp_id": "5439779",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1235",
+ "temp_id": "5439780",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1236",
+ "temp_id": "5439781",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1237",
+ "temp_id": "5439782",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1238",
+ "temp_id": "5439783",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1239",
+ "temp_id": "5439784",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1240",
+ "temp_id": "5439785",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1241",
+ "temp_id": "5439786",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1242",
+ "temp_id": "5439787",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1243",
+ "temp_id": "5439788",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1244",
+ "temp_id": "5439789",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1245",
+ "temp_id": "5439790",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1246",
+ "temp_id": "5439791",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1247",
+ "temp_id": "5439792",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1248",
+ "temp_id": "5439793",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1249",
+ "temp_id": "5439794",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1250",
+ "temp_id": "5439795",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "48900.0000"
+ },
+ {
+ "id": "1251",
+ "temp_id": "5439796",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1252",
+ "temp_id": "5439797",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1253",
+ "temp_id": "5439798",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1254",
+ "temp_id": "5439799",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1255",
+ "temp_id": "5439800",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1256",
+ "temp_id": "5439801",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1257",
+ "temp_id": "5439802",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1258",
+ "temp_id": "5439803",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1259",
+ "temp_id": "5439804",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1260",
+ "temp_id": "5439805",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1261",
+ "temp_id": "5439806",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1262",
+ "temp_id": "5439807",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1263",
+ "temp_id": "5439808",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1264",
+ "temp_id": "5439809",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1265",
+ "temp_id": "5439810",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1266",
+ "temp_id": "5439811",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1267",
+ "temp_id": "5439812",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1268",
+ "temp_id": "5439813",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1269",
+ "temp_id": "5439814",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1270",
+ "temp_id": "5439815",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1271",
+ "temp_id": "5439816",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1272",
+ "temp_id": "5439817",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1273",
+ "temp_id": "5439818",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1274",
+ "temp_id": "5439819",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1275",
+ "temp_id": "5439820",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1276",
+ "temp_id": "5439821",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1277",
+ "temp_id": "5439822",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1278",
+ "temp_id": "5439823",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1279",
+ "temp_id": "5439824",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1280",
+ "temp_id": "5439825",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1281",
+ "temp_id": "5439826",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1282",
+ "temp_id": "5439827",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1283",
+ "temp_id": "5439828",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1284",
+ "temp_id": "5439829",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1285",
+ "temp_id": "5439830",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1286",
+ "temp_id": "5439831",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1287",
+ "temp_id": "5439832",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1288",
+ "temp_id": "5439833",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1289",
+ "temp_id": "5439834",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1290",
+ "temp_id": "5439835",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1291",
+ "temp_id": "5439836",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1292",
+ "temp_id": "5439837",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1293",
+ "temp_id": "5439838",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1294",
+ "temp_id": "5439839",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1295",
+ "temp_id": "5439840",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1296",
+ "temp_id": "5439841",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1297",
+ "temp_id": "5439842",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2010-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1298",
+ "temp_id": "5439843",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1299",
+ "temp_id": "5439844",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1300",
+ "temp_id": "5439845",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1301",
+ "temp_id": "5439846",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1302",
+ "temp_id": "5439847",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1303",
+ "temp_id": "5439848",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1304",
+ "temp_id": "5439849",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1305",
+ "temp_id": "5439850",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1306",
+ "temp_id": "5439851",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1307",
+ "temp_id": "5439852",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1308",
+ "temp_id": "5439853",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1309",
+ "temp_id": "5439854",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1310",
+ "temp_id": "5439855",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1311",
+ "temp_id": "5439856",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1312",
+ "temp_id": "5439857",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1313",
+ "temp_id": "5439858",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1314",
+ "temp_id": "5439859",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1315",
+ "temp_id": "5439860",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1316",
+ "temp_id": "5439861",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1317",
+ "temp_id": "5439862",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1318",
+ "temp_id": "5439863",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1319",
+ "temp_id": "5439864",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1320",
+ "temp_id": "5439865",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1321",
+ "temp_id": "5439866",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2010-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1322",
+ "temp_id": "5439867",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1323",
+ "temp_id": "5439868",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1324",
+ "temp_id": "5439869",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1325",
+ "temp_id": "5439870",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1326",
+ "temp_id": "5439871",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1327",
+ "temp_id": "5439872",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1328",
+ "temp_id": "5439873",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1329",
+ "temp_id": "5439874",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1330",
+ "temp_id": "5439875",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1331",
+ "temp_id": "5439876",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1332",
+ "temp_id": "5439877",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1333",
+ "temp_id": "5439878",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1334",
+ "temp_id": "5439879",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1335",
+ "temp_id": "5439880",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1336",
+ "temp_id": "5439881",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1337",
+ "temp_id": "5439882",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1338",
+ "temp_id": "5439883",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1339",
+ "temp_id": "5439884",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1340",
+ "temp_id": "5439885",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1341",
+ "temp_id": "5439886",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1342",
+ "temp_id": "5439887",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1343",
+ "temp_id": "5439888",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1344",
+ "temp_id": "5439889",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1345",
+ "temp_id": "5439890",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1346",
+ "temp_id": "5439891",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1347",
+ "temp_id": "5439892",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1348",
+ "temp_id": "5439893",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1349",
+ "temp_id": "5439894",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1350",
+ "temp_id": "5439895",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1351",
+ "temp_id": "5439896",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1352",
+ "temp_id": "5439897",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1353",
+ "temp_id": "5439898",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1354",
+ "temp_id": "5439899",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1355",
+ "temp_id": "5439900",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1356",
+ "temp_id": "5439901",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1357",
+ "temp_id": "5439902",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1358",
+ "temp_id": "5439903",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1359",
+ "temp_id": "5439904",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1360",
+ "temp_id": "5439905",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1361",
+ "temp_id": "5439906",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1362",
+ "temp_id": "5439907",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1363",
+ "temp_id": "5439908",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1364",
+ "temp_id": "5439909",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1365",
+ "temp_id": "5439910",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1366",
+ "temp_id": "5439911",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1367",
+ "temp_id": "5439912",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1368",
+ "temp_id": "5439913",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1369",
+ "temp_id": "5439914",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1370",
+ "temp_id": "5439915",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1371",
+ "temp_id": "5439916",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1372",
+ "temp_id": "5439917",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1373",
+ "temp_id": "5439918",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1374",
+ "temp_id": "5439919",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1375",
+ "temp_id": "5439920",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1376",
+ "temp_id": "5439921",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1377",
+ "temp_id": "5439922",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1378",
+ "temp_id": "5439923",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1379",
+ "temp_id": "5439924",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1380",
+ "temp_id": "5439925",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1381",
+ "temp_id": "5439926",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1382",
+ "temp_id": "5439927",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1383",
+ "temp_id": "5439928",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1384",
+ "temp_id": "5439929",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1385",
+ "temp_id": "5439930",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1386",
+ "temp_id": "5439931",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1387",
+ "temp_id": "5439932",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1388",
+ "temp_id": "5439933",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1389",
+ "temp_id": "5439934",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1390",
+ "temp_id": "5439935",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1391",
+ "temp_id": "5439936",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1392",
+ "temp_id": "5439937",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1393",
+ "temp_id": "5439938",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1394",
+ "temp_id": "5439939",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1395",
+ "temp_id": "5439940",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1396",
+ "temp_id": "5439941",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1397",
+ "temp_id": "5439942",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1398",
+ "temp_id": "5439943",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1399",
+ "temp_id": "5439944",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1400",
+ "temp_id": "5439945",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1401",
+ "temp_id": "5439946",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1402",
+ "temp_id": "5439947",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1403",
+ "temp_id": "5439948",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1404",
+ "temp_id": "5439949",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1405",
+ "temp_id": "5439950",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1406",
+ "temp_id": "5439951",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1407",
+ "temp_id": "5439952",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1408",
+ "temp_id": "5439953",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1409",
+ "temp_id": "5439954",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1410",
+ "temp_id": "5439955",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1411",
+ "temp_id": "5439956",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1412",
+ "temp_id": "5439957",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1413",
+ "temp_id": "5439958",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1414",
+ "temp_id": "5439959",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1415",
+ "temp_id": "5439960",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1416",
+ "temp_id": "5439961",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2010-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1417",
+ "temp_id": "5439962",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2010-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1418",
+ "temp_id": "5439963",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1419",
+ "temp_id": "5439964",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1420",
+ "temp_id": "5439965",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1421",
+ "temp_id": "5439966",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1422",
+ "temp_id": "5439967",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1423",
+ "temp_id": "5439968",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1424",
+ "temp_id": "5439969",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1425",
+ "temp_id": "5439970",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1426",
+ "temp_id": "5439971",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1427",
+ "temp_id": "5439972",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1428",
+ "temp_id": "5439973",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1429",
+ "temp_id": "5439974",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1430",
+ "temp_id": "5439975",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1431",
+ "temp_id": "5439976",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1432",
+ "temp_id": "5439977",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1433",
+ "temp_id": "5439978",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1434",
+ "temp_id": "5439979",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1435",
+ "temp_id": "5439980",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1436",
+ "temp_id": "5439981",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1437",
+ "temp_id": "5439982",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1438",
+ "temp_id": "5439983",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1439",
+ "temp_id": "5439984",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1440",
+ "temp_id": "5439985",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1441",
+ "temp_id": "5439986",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1442",
+ "temp_id": "5439987",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1443",
+ "temp_id": "5439988",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1444",
+ "temp_id": "5439989",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1445",
+ "temp_id": "5439990",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1446",
+ "temp_id": "5439991",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1447",
+ "temp_id": "5439992",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1448",
+ "temp_id": "5439993",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1449",
+ "temp_id": "5439994",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1450",
+ "temp_id": "5439995",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1451",
+ "temp_id": "5439996",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1452",
+ "temp_id": "5439997",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1453",
+ "temp_id": "5439998",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1454",
+ "temp_id": "5439999",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1455",
+ "temp_id": "5440000",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1456",
+ "temp_id": "5440001",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1457",
+ "temp_id": "5440002",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1458",
+ "temp_id": "5440003",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1459",
+ "temp_id": "5440004",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1460",
+ "temp_id": "5440005",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1461",
+ "temp_id": "5440006",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1462",
+ "temp_id": "5440007",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1463",
+ "temp_id": "5440008",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1464",
+ "temp_id": "5440009",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1465",
+ "temp_id": "5440010",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1466",
+ "temp_id": "5440011",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1467",
+ "temp_id": "5440012",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1468",
+ "temp_id": "5440013",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1469",
+ "temp_id": "5440014",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1470",
+ "temp_id": "5440015",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1471",
+ "temp_id": "5440016",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1472",
+ "temp_id": "5440017",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1473",
+ "temp_id": "5440018",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1474",
+ "temp_id": "5440019",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1475",
+ "temp_id": "5440020",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1476",
+ "temp_id": "5440021",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1477",
+ "temp_id": "5440022",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1478",
+ "temp_id": "5440023",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1479",
+ "temp_id": "5440024",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1480",
+ "temp_id": "5440025",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1481",
+ "temp_id": "5440026",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1482",
+ "temp_id": "5440027",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1483",
+ "temp_id": "5440028",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1484",
+ "temp_id": "5440029",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1485",
+ "temp_id": "5440030",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1486",
+ "temp_id": "5440031",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1487",
+ "temp_id": "5440032",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1488",
+ "temp_id": "5440033",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1489",
+ "temp_id": "5440034",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1490",
+ "temp_id": "5440035",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1491",
+ "temp_id": "5440036",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1492",
+ "temp_id": "5440037",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1493",
+ "temp_id": "5440038",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1494",
+ "temp_id": "5440039",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1495",
+ "temp_id": "5440040",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1496",
+ "temp_id": "5440041",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1497",
+ "temp_id": "5440042",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1498",
+ "temp_id": "5440043",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1499",
+ "temp_id": "5440044",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1500",
+ "temp_id": "5440045",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1501",
+ "temp_id": "5440046",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1502",
+ "temp_id": "5440047",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1503",
+ "temp_id": "5440048",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1504",
+ "temp_id": "5440049",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1505",
+ "temp_id": "5440050",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1506",
+ "temp_id": "5440051",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1507",
+ "temp_id": "5440052",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1508",
+ "temp_id": "5440053",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1509",
+ "temp_id": "5440054",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1510",
+ "temp_id": "5440055",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1511",
+ "temp_id": "5440056",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1512",
+ "temp_id": "5440057",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1513",
+ "temp_id": "5440058",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1514",
+ "temp_id": "5440059",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1515",
+ "temp_id": "5440060",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1516",
+ "temp_id": "5440061",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1517",
+ "temp_id": "5440062",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1518",
+ "temp_id": "5440063",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1519",
+ "temp_id": "5440064",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1520",
+ "temp_id": "5440065",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1521",
+ "temp_id": "5440066",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1522",
+ "temp_id": "5440067",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1523",
+ "temp_id": "5440068",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1524",
+ "temp_id": "5440069",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1525",
+ "temp_id": "5440070",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1526",
+ "temp_id": "5440071",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1527",
+ "temp_id": "5440072",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1528",
+ "temp_id": "5440073",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1529",
+ "temp_id": "5440074",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1530",
+ "temp_id": "5440075",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1531",
+ "temp_id": "5440076",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1532",
+ "temp_id": "5440077",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1533",
+ "temp_id": "5440078",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1534",
+ "temp_id": "5440079",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1535",
+ "temp_id": "5440080",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1536",
+ "temp_id": "5440081",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1537",
+ "temp_id": "5440082",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1538",
+ "temp_id": "5440083",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1539",
+ "temp_id": "5440084",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1540",
+ "temp_id": "5440085",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1541",
+ "temp_id": "5440086",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1542",
+ "temp_id": "5440087",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1543",
+ "temp_id": "5440088",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1544",
+ "temp_id": "5440089",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1545",
+ "temp_id": "5440090",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1546",
+ "temp_id": "5440091",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1547",
+ "temp_id": "5440092",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1548",
+ "temp_id": "5440093",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1016259.0000"
+ },
+ {
+ "id": "1549",
+ "temp_id": "5440094",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1550",
+ "temp_id": "5440095",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "5884813.0000"
+ },
+ {
+ "id": "1551",
+ "temp_id": "5440096",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "5869019.0000"
+ },
+ {
+ "id": "1552",
+ "temp_id": "5440097",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "5776102.0000"
+ },
+ {
+ "id": "1553",
+ "temp_id": "5440098",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1554",
+ "temp_id": "5440099",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "582758.0000"
+ },
+ {
+ "id": "1555",
+ "temp_id": "5440100",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1110284.0000"
+ },
+ {
+ "id": "1556",
+ "temp_id": "5440101",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "5887465.0000"
+ },
+ {
+ "id": "1557",
+ "temp_id": "5440102",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "5877484.0000"
+ },
+ {
+ "id": "1558",
+ "temp_id": "5440103",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1559",
+ "temp_id": "5440104",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1560",
+ "temp_id": "5440105",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1561",
+ "temp_id": "5440106",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1562",
+ "temp_id": "5440107",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8262417.0000"
+ },
+ {
+ "id": "1563",
+ "temp_id": "5440108",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8325567.0000"
+ },
+ {
+ "id": "1564",
+ "temp_id": "5440109",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8379260.0000"
+ },
+ {
+ "id": "1565",
+ "temp_id": "5440110",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8431400.0000"
+ },
+ {
+ "id": "1566",
+ "temp_id": "5440111",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8487508.0000"
+ },
+ {
+ "id": "1567",
+ "temp_id": "5440112",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8540302.0000"
+ },
+ {
+ "id": "1568",
+ "temp_id": "5440113",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8595351.0000"
+ },
+ {
+ "id": "1569",
+ "temp_id": "5440114",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8647061.0000"
+ },
+ {
+ "id": "1570",
+ "temp_id": "5440115",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8698523.0000"
+ },
+ {
+ "id": "1571",
+ "temp_id": "5440116",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8752020.0000"
+ },
+ {
+ "id": "1572",
+ "temp_id": "5440117",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8802181.0000"
+ },
+ {
+ "id": "1573",
+ "temp_id": "5440118",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8853459.0000"
+ },
+ {
+ "id": "1574",
+ "temp_id": "5440119",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8902596.0000"
+ },
+ {
+ "id": "1575",
+ "temp_id": "5440120",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8957025.0000"
+ },
+ {
+ "id": "1576",
+ "temp_id": "5440121",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "9004436.0000"
+ },
+ {
+ "id": "1577",
+ "temp_id": "5440122",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "23 Days Pa",
+ "CFHistory24MonthsOSAmount": "9056709.0000"
+ },
+ {
+ "id": "1578",
+ "temp_id": "5440123",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "22 Days Pa",
+ "CFHistory24MonthsOSAmount": "9106735.0000"
+ },
+ {
+ "id": "1579",
+ "temp_id": "5440124",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "23 Days Pa",
+ "CFHistory24MonthsOSAmount": "9153218.0000"
+ },
+ {
+ "id": "1580",
+ "temp_id": "5440125",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "9199948.0000"
+ },
+ {
+ "id": "1581",
+ "temp_id": "5440126",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "23 Days Pa",
+ "CFHistory24MonthsOSAmount": "9248472.0000"
+ },
+ {
+ "id": "1582",
+ "temp_id": "5440127",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "23 Days Pa",
+ "CFHistory24MonthsOSAmount": "9291284.0000"
+ },
+ {
+ "id": "1583",
+ "temp_id": "5440128",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "22 Days Pa",
+ "CFHistory24MonthsOSAmount": "9338487.0000"
+ },
+ {
+ "id": "1584",
+ "temp_id": "5440129",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "9381089.0000"
+ },
+ {
+ "id": "1585",
+ "temp_id": "5440130",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "9427280.0000"
+ },
+ {
+ "id": "1586",
+ "temp_id": "5440131",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1587",
+ "temp_id": "5440132",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1588",
+ "temp_id": "5440133",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1589",
+ "temp_id": "5440134",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1590",
+ "temp_id": "5440135",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1591",
+ "temp_id": "5440136",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "985938.0000"
+ },
+ {
+ "id": "1592",
+ "temp_id": "5440137",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1593",
+ "temp_id": "5440138",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1594",
+ "temp_id": "5440139",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1595",
+ "temp_id": "5440140",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1596",
+ "temp_id": "5440141",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1597",
+ "temp_id": "5440142",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1598",
+ "temp_id": "5440143",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1599",
+ "temp_id": "5440144",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1600",
+ "temp_id": "5440145",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1601",
+ "temp_id": "5440146",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1602",
+ "temp_id": "5440147",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1603",
+ "temp_id": "5440148",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1604",
+ "temp_id": "5440149",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1605",
+ "temp_id": "5440150",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1606",
+ "temp_id": "5440151",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1607",
+ "temp_id": "5440152",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1608",
+ "temp_id": "5440153",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1609",
+ "temp_id": "5440154",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1610",
+ "temp_id": "5440155",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1611",
+ "temp_id": "5440156",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1612",
+ "temp_id": "5440157",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1613",
+ "temp_id": "5440158",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1614",
+ "temp_id": "5440159",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1615",
+ "temp_id": "5440160",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1616",
+ "temp_id": "5440161",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1617",
+ "temp_id": "5440162",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1618",
+ "temp_id": "5440163",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1619",
+ "temp_id": "5440164",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1620",
+ "temp_id": "5440165",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1621",
+ "temp_id": "5440166",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1622",
+ "temp_id": "5440167",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1623",
+ "temp_id": "5440168",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1624",
+ "temp_id": "5440169",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1625",
+ "temp_id": "5440170",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1626",
+ "temp_id": "5440171",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1627",
+ "temp_id": "5440172",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1628",
+ "temp_id": "5440173",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1629",
+ "temp_id": "5440174",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1630",
+ "temp_id": "5440175",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1631",
+ "temp_id": "5440176",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1632",
+ "temp_id": "5440177",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1633",
+ "temp_id": "5440178",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1634",
+ "temp_id": "5440179",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1635",
+ "temp_id": "5440180",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1636",
+ "temp_id": "5440181",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1637",
+ "temp_id": "5440182",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1638",
+ "temp_id": "5440183",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1639",
+ "temp_id": "5440184",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1640",
+ "temp_id": "5440185",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1641",
+ "temp_id": "5440186",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1642",
+ "temp_id": "5440187",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1643",
+ "temp_id": "5440188",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1644",
+ "temp_id": "5440189",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1645",
+ "temp_id": "5440190",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1646",
+ "temp_id": "5440191",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1647",
+ "temp_id": "5440192",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1648",
+ "temp_id": "5440193",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1649",
+ "temp_id": "5440194",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1650",
+ "temp_id": "5440195",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1651",
+ "temp_id": "5440196",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1652",
+ "temp_id": "5440197",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1653",
+ "temp_id": "5440198",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1654",
+ "temp_id": "5440199",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1655",
+ "temp_id": "5440200",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1656",
+ "temp_id": "5440201",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "7747342.0000"
+ },
+ {
+ "id": "1657",
+ "temp_id": "5440202",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "8079610.0000"
+ },
+ {
+ "id": "1658",
+ "temp_id": "5440203",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "250494.0000"
+ },
+ {
+ "id": "1659",
+ "temp_id": "5440204",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "260954.0000"
+ },
+ {
+ "id": "1660",
+ "temp_id": "5440205",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "271273.0000"
+ },
+ {
+ "id": "1661",
+ "temp_id": "5440206",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "281580.0000"
+ },
+ {
+ "id": "1662",
+ "temp_id": "5440207",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "19 Days Pa",
+ "CFHistory24MonthsOSAmount": "304022.0000"
+ },
+ {
+ "id": "1663",
+ "temp_id": "5440208",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "301690.0000"
+ },
+ {
+ "id": "1664",
+ "temp_id": "5440209",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "311748.0000"
+ },
+ {
+ "id": "1665",
+ "temp_id": "5440210",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "321598.0000"
+ },
+ {
+ "id": "1666",
+ "temp_id": "5440211",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "331473.0000"
+ },
+ {
+ "id": "1667",
+ "temp_id": "5440212",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "341223.0000"
+ },
+ {
+ "id": "1668",
+ "temp_id": "5440213",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "19 Days Pa",
+ "CFHistory24MonthsOSAmount": "363440.0000"
+ },
+ {
+ "id": "1669",
+ "temp_id": "5440214",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "360652.0000"
+ },
+ {
+ "id": "1670",
+ "temp_id": "5440215",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "370179.0000"
+ },
+ {
+ "id": "1671",
+ "temp_id": "5440216",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "379728.0000"
+ },
+ {
+ "id": "1672",
+ "temp_id": "5440217",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "389072.0000"
+ },
+ {
+ "id": "1673",
+ "temp_id": "5440218",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "398481.0000"
+ },
+ {
+ "id": "1674",
+ "temp_id": "5440219",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "407684.0000"
+ },
+ {
+ "id": "1675",
+ "temp_id": "5440220",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "18 Days Pa",
+ "CFHistory24MonthsOSAmount": "429093.0000"
+ },
+ {
+ "id": "1676",
+ "temp_id": "5440221",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "19 Days Pa",
+ "CFHistory24MonthsOSAmount": "438011.0000"
+ },
+ {
+ "id": "1677",
+ "temp_id": "5440222",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "434724.0000"
+ },
+ {
+ "id": "1678",
+ "temp_id": "5440223",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "443519.0000"
+ },
+ {
+ "id": "1679",
+ "temp_id": "5440224",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "16 Days Pa",
+ "CFHistory24MonthsOSAmount": "465083.0000"
+ },
+ {
+ "id": "1680",
+ "temp_id": "5440225",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "461930.0000"
+ },
+ {
+ "id": "1681",
+ "temp_id": "5440226",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "470015.0000"
+ },
+ {
+ "id": "1682",
+ "temp_id": "5440227",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1683",
+ "temp_id": "5440228",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1684",
+ "temp_id": "5440229",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1685",
+ "temp_id": "5440230",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1686",
+ "temp_id": "5440231",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1687",
+ "temp_id": "5440232",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1688",
+ "temp_id": "5440233",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1689",
+ "temp_id": "5440234",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1690",
+ "temp_id": "5440235",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1691",
+ "temp_id": "5440236",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1692",
+ "temp_id": "5440237",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1693",
+ "temp_id": "5440238",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "10.0000"
+ },
+ {
+ "id": "1694",
+ "temp_id": "5440239",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "9730.0000"
+ },
+ {
+ "id": "1695",
+ "temp_id": "5440240",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19180.0000"
+ },
+ {
+ "id": "1696",
+ "temp_id": "5440241",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "28558.0000"
+ },
+ {
+ "id": "1697",
+ "temp_id": "5440242",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "37855.0000"
+ },
+ {
+ "id": "1698",
+ "temp_id": "5440243",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "47074.0000"
+ },
+ {
+ "id": "1699",
+ "temp_id": "5440244",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "30 Days Pa",
+ "CFHistory24MonthsOSAmount": "57924.0000"
+ },
+ {
+ "id": "1700",
+ "temp_id": "5440245",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "65291.0000"
+ },
+ {
+ "id": "1701",
+ "temp_id": "5440246",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "73353.0000"
+ },
+ {
+ "id": "1702",
+ "temp_id": "5440247",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "27 Days Pa",
+ "CFHistory24MonthsOSAmount": "90674.0000"
+ },
+ {
+ "id": "1703",
+ "temp_id": "5440248",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "92022.0000"
+ },
+ {
+ "id": "1704",
+ "temp_id": "5440249",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "100739.0000"
+ },
+ {
+ "id": "1705",
+ "temp_id": "5440250",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "109392.0000"
+ },
+ {
+ "id": "1706",
+ "temp_id": "5440251",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "46977.0000"
+ },
+ {
+ "id": "1707",
+ "temp_id": "5440252",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "46479.0000"
+ },
+ {
+ "id": "1708",
+ "temp_id": "5440253",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "44398.0000"
+ },
+ {
+ "id": "1709",
+ "temp_id": "5440254",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "39861.0000"
+ },
+ {
+ "id": "1710",
+ "temp_id": "5440255",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "34051.0000"
+ },
+ {
+ "id": "1711",
+ "temp_id": "5440256",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "25160.0000"
+ },
+ {
+ "id": "1712",
+ "temp_id": "5440257",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "16178.0000"
+ },
+ {
+ "id": "1713",
+ "temp_id": "5440258",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1114040.0000"
+ },
+ {
+ "id": "1714",
+ "temp_id": "5440259",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1226486.0000"
+ },
+ {
+ "id": "1715",
+ "temp_id": "5440260",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1338395.0000"
+ },
+ {
+ "id": "1716",
+ "temp_id": "5440261",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1447224.0000"
+ },
+ {
+ "id": "1717",
+ "temp_id": "5440262",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1555794.0000"
+ },
+ {
+ "id": "1718",
+ "temp_id": "5440263",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1657427.0000"
+ },
+ {
+ "id": "1719",
+ "temp_id": "5440264",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1758027.0000"
+ },
+ {
+ "id": "1720",
+ "temp_id": "5440265",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1857104.0000"
+ },
+ {
+ "id": "1721",
+ "temp_id": "5440266",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1957371.0000"
+ },
+ {
+ "id": "1722",
+ "temp_id": "5440267",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2058038.0000"
+ },
+ {
+ "id": "1723",
+ "temp_id": "5440268",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2194115.0000"
+ },
+ {
+ "id": "1724",
+ "temp_id": "5440269",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2295820.0000"
+ },
+ {
+ "id": "1725",
+ "temp_id": "5440270",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2392713.0000"
+ },
+ {
+ "id": "1726",
+ "temp_id": "5440271",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2486857.0000"
+ },
+ {
+ "id": "1727",
+ "temp_id": "5440272",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2509116.0000"
+ },
+ {
+ "id": "1728",
+ "temp_id": "5440273",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2509116.0000"
+ },
+ {
+ "id": "1729",
+ "temp_id": "5440274",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1730",
+ "temp_id": "5440275",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1731",
+ "temp_id": "5440276",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1732",
+ "temp_id": "5440277",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1733",
+ "temp_id": "5440278",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1734",
+ "temp_id": "5440279",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1735",
+ "temp_id": "5440280",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1628511.0000"
+ },
+ {
+ "id": "1736",
+ "temp_id": "5440281",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1693303.0000"
+ },
+ {
+ "id": "1737",
+ "temp_id": "5440282",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1757073.0000"
+ },
+ {
+ "id": "1738",
+ "temp_id": "5440283",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1739",
+ "temp_id": "5440284",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1740",
+ "temp_id": "5440285",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1942404.0000"
+ },
+ {
+ "id": "1741",
+ "temp_id": "5440286",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2002241.0000"
+ },
+ {
+ "id": "1742",
+ "temp_id": "5440287",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2061133.0000"
+ },
+ {
+ "id": "1743",
+ "temp_id": "5440288",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2119095.0000"
+ },
+ {
+ "id": "1744",
+ "temp_id": "5440289",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2176142.0000"
+ },
+ {
+ "id": "1745",
+ "temp_id": "5440290",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2232288.0000"
+ },
+ {
+ "id": "1746",
+ "temp_id": "5440291",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1747",
+ "temp_id": "5440292",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1748",
+ "temp_id": "5440293",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1749",
+ "temp_id": "5440294",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1750",
+ "temp_id": "5440295",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1751",
+ "temp_id": "5440296",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1752",
+ "temp_id": "5440297",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1753",
+ "temp_id": "5440298",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1754",
+ "temp_id": "5440299",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1755",
+ "temp_id": "5440300",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1756",
+ "temp_id": "5440301",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1757",
+ "temp_id": "5440302",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1758",
+ "temp_id": "5440303",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1759",
+ "temp_id": "5440304",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1760",
+ "temp_id": "5440305",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1761",
+ "temp_id": "5440306",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1762",
+ "temp_id": "5440307",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1763",
+ "temp_id": "5440308",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1764",
+ "temp_id": "5440309",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1765",
+ "temp_id": "5440310",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1766",
+ "temp_id": "5440311",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1767",
+ "temp_id": "5440312",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1768",
+ "temp_id": "5440313",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1769",
+ "temp_id": "5440314",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1770",
+ "temp_id": "5440315",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1771",
+ "temp_id": "5440316",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1772",
+ "temp_id": "5440317",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1773",
+ "temp_id": "5440318",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1774",
+ "temp_id": "5440319",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1775",
+ "temp_id": "5440320",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1776",
+ "temp_id": "5440321",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1777",
+ "temp_id": "5440322",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1778",
+ "temp_id": "5440323",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1779",
+ "temp_id": "5440324",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1780",
+ "temp_id": "5440325",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1781",
+ "temp_id": "5440326",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1782",
+ "temp_id": "5440327",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1783",
+ "temp_id": "5440328",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1784",
+ "temp_id": "5440329",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1785",
+ "temp_id": "5440330",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1786",
+ "temp_id": "5440331",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1787",
+ "temp_id": "5440332",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1788",
+ "temp_id": "5440333",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1789",
+ "temp_id": "5440334",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1790",
+ "temp_id": "5440335",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1791",
+ "temp_id": "5440336",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1792",
+ "temp_id": "5440337",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1793",
+ "temp_id": "5440338",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1794",
+ "temp_id": "5440339",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1795",
+ "temp_id": "5440340",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1796",
+ "temp_id": "5440341",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1797",
+ "temp_id": "5440342",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1798",
+ "temp_id": "5440343",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1799",
+ "temp_id": "5440344",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1800",
+ "temp_id": "5440345",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751621.0000"
+ },
+ {
+ "id": "1801",
+ "temp_id": "5440346",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "817831.0000"
+ },
+ {
+ "id": "1802",
+ "temp_id": "5440347",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1803",
+ "temp_id": "5440348",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1804",
+ "temp_id": "5440349",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1805",
+ "temp_id": "5440350",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1806",
+ "temp_id": "5440351",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1807",
+ "temp_id": "5440352",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1350526.0000"
+ },
+ {
+ "id": "1808",
+ "temp_id": "5440353",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1423032.0000"
+ },
+ {
+ "id": "1809",
+ "temp_id": "5440354",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1452336.0000"
+ },
+ {
+ "id": "1810",
+ "temp_id": "5440355",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1502103.0000"
+ },
+ {
+ "id": "1811",
+ "temp_id": "5440356",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1551127.0000"
+ },
+ {
+ "id": "1812",
+ "temp_id": "5440357",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1598474.0000"
+ },
+ {
+ "id": "1813",
+ "temp_id": "5440358",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1645100.0000"
+ },
+ {
+ "id": "1814",
+ "temp_id": "5440359",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1691015.0000"
+ },
+ {
+ "id": "1815",
+ "temp_id": "5440360",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1763521.0000"
+ },
+ {
+ "id": "1816",
+ "temp_id": "5440361",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1782643.0000"
+ },
+ {
+ "id": "1817",
+ "temp_id": "5440362",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1827433.0000"
+ },
+ {
+ "id": "1818",
+ "temp_id": "5440363",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1871553.0000"
+ },
+ {
+ "id": "1819",
+ "temp_id": "5440364",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1915015.0000"
+ },
+ {
+ "id": "1820",
+ "temp_id": "5440365",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1915015.0000"
+ },
+ {
+ "id": "1821",
+ "temp_id": "5440366",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1957827.0000"
+ },
+ {
+ "id": "1822",
+ "temp_id": "5440367",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "1823",
+ "temp_id": "5440368",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1824",
+ "temp_id": "5440369",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1825",
+ "temp_id": "5440370",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1826",
+ "temp_id": "5440371",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1839256.0000"
+ },
+ {
+ "id": "1827",
+ "temp_id": "5440372",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1919028.0000"
+ },
+ {
+ "id": "1828",
+ "temp_id": "5440373",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1997685.0000"
+ },
+ {
+ "id": "1829",
+ "temp_id": "5440374",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2075244.0000"
+ },
+ {
+ "id": "1830",
+ "temp_id": "5440375",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2151719.0000"
+ },
+ {
+ "id": "1831",
+ "temp_id": "5440376",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "11 Days Pa",
+ "CFHistory24MonthsOSAmount": "2334084.0000"
+ },
+ {
+ "id": "1832",
+ "temp_id": "5440377",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "2408438.0000"
+ },
+ {
+ "id": "1833",
+ "temp_id": "5440378",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "11 Days Pa",
+ "CFHistory24MonthsOSAmount": "2481753.0000"
+ },
+ {
+ "id": "1834",
+ "temp_id": "5440379",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "2554044.0000"
+ },
+ {
+ "id": "1835",
+ "temp_id": "5440380",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1836",
+ "temp_id": "5440381",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1837",
+ "temp_id": "5440382",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1838",
+ "temp_id": "5440383",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1839",
+ "temp_id": "5440384",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1840",
+ "temp_id": "5440385",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1841",
+ "temp_id": "5440386",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1842",
+ "temp_id": "5440387",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1843",
+ "temp_id": "5440388",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1844",
+ "temp_id": "5440389",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1845",
+ "temp_id": "5440390",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1846",
+ "temp_id": "5440391",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1847",
+ "temp_id": "5440392",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1848",
+ "temp_id": "5440393",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1849",
+ "temp_id": "5440394",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1850",
+ "temp_id": "5440395",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1851",
+ "temp_id": "5440396",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1349686.0000"
+ },
+ {
+ "id": "1852",
+ "temp_id": "5440397",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1400896.0000"
+ },
+ {
+ "id": "1853",
+ "temp_id": "5440398",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1451329.0000"
+ },
+ {
+ "id": "1854",
+ "temp_id": "5440399",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500996.0000"
+ },
+ {
+ "id": "1855",
+ "temp_id": "5440400",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1549909.0000"
+ },
+ {
+ "id": "1856",
+ "temp_id": "5440401",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1598079.0000"
+ },
+ {
+ "id": "1857",
+ "temp_id": "5440402",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1645518.0000"
+ },
+ {
+ "id": "1858",
+ "temp_id": "5440403",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1692237.0000"
+ },
+ {
+ "id": "1859",
+ "temp_id": "5440404",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1738247.0000"
+ },
+ {
+ "id": "1860",
+ "temp_id": "5440405",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1783558.0000"
+ },
+ {
+ "id": "1861",
+ "temp_id": "5440406",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1828181.0000"
+ },
+ {
+ "id": "1862",
+ "temp_id": "5440407",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1863",
+ "temp_id": "5440408",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1864",
+ "temp_id": "5440409",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1958026.0000"
+ },
+ {
+ "id": "1865",
+ "temp_id": "5440410",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "1866",
+ "temp_id": "5440411",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "1867",
+ "temp_id": "5440412",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1868",
+ "temp_id": "5440413",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1869",
+ "temp_id": "5440414",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1870",
+ "temp_id": "5440415",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1871",
+ "temp_id": "5440416",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1872",
+ "temp_id": "5440417",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1873",
+ "temp_id": "5440418",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1874",
+ "temp_id": "5440419",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2470461.0000"
+ },
+ {
+ "id": "1875",
+ "temp_id": "5440420",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2559862.0000"
+ },
+ {
+ "id": "1876",
+ "temp_id": "5440421",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2647941.0000"
+ },
+ {
+ "id": "1877",
+ "temp_id": "5440422",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2734719.0000"
+ },
+ {
+ "id": "1878",
+ "temp_id": "5440423",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2820214.0000"
+ },
+ {
+ "id": "1879",
+ "temp_id": "5440424",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2904446.0000"
+ },
+ {
+ "id": "1880",
+ "temp_id": "5440425",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2987433.0000"
+ },
+ {
+ "id": "1881",
+ "temp_id": "5440426",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3069194.0000"
+ },
+ {
+ "id": "1882",
+ "temp_id": "5440427",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3149746.0000"
+ },
+ {
+ "id": "1883",
+ "temp_id": "5440428",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3229108.0000"
+ },
+ {
+ "id": "1884",
+ "temp_id": "5440429",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3307297.0000"
+ },
+ {
+ "id": "1885",
+ "temp_id": "5440430",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3384331.0000"
+ },
+ {
+ "id": "1886",
+ "temp_id": "5440431",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3460226.0000"
+ },
+ {
+ "id": "1887",
+ "temp_id": "5440432",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3535000.0000"
+ },
+ {
+ "id": "1888",
+ "temp_id": "5440433",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3535000.0000"
+ },
+ {
+ "id": "1889",
+ "temp_id": "5440434",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1890",
+ "temp_id": "5440435",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1891",
+ "temp_id": "5440436",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1892",
+ "temp_id": "5440437",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1893",
+ "temp_id": "5440438",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1894",
+ "temp_id": "5440439",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1895",
+ "temp_id": "5440440",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1896",
+ "temp_id": "5440441",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1897",
+ "temp_id": "5440442",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1898",
+ "temp_id": "5440443",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "469305.0000"
+ },
+ {
+ "id": "1899",
+ "temp_id": "5440444",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "559266.0000"
+ },
+ {
+ "id": "1900",
+ "temp_id": "5440445",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "647439.0000"
+ },
+ {
+ "id": "1901",
+ "temp_id": "5440446",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "737172.0000"
+ },
+ {
+ "id": "1902",
+ "temp_id": "5440447",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "814684.0000"
+ },
+ {
+ "id": "1903",
+ "temp_id": "5440448",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "902522.0000"
+ },
+ {
+ "id": "1904",
+ "temp_id": "5440449",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "982399.0000"
+ },
+ {
+ "id": "1905",
+ "temp_id": "5440450",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1037564.0000"
+ },
+ {
+ "id": "1906",
+ "temp_id": "5440451",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1151714.0000"
+ },
+ {
+ "id": "1907",
+ "temp_id": "5440452",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1151714.0000"
+ },
+ {
+ "id": "1908",
+ "temp_id": "5440453",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1224641.0000"
+ },
+ {
+ "id": "1909",
+ "temp_id": "5440454",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1293498.0000"
+ },
+ {
+ "id": "1910",
+ "temp_id": "5440455",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1362774.0000"
+ },
+ {
+ "id": "1911",
+ "temp_id": "5440456",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1429031.0000"
+ },
+ {
+ "id": "1912",
+ "temp_id": "5440457",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1913",
+ "temp_id": "5440458",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1914",
+ "temp_id": "5440459",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1915",
+ "temp_id": "5440460",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1916",
+ "temp_id": "5440461",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1917",
+ "temp_id": "5440462",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1918",
+ "temp_id": "5440463",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1919",
+ "temp_id": "5440464",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1920",
+ "temp_id": "5440465",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1921",
+ "temp_id": "5440466",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1922",
+ "temp_id": "5440467",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1349983.0000"
+ },
+ {
+ "id": "1923",
+ "temp_id": "5440468",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1400780.0000"
+ },
+ {
+ "id": "1924",
+ "temp_id": "5440469",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1451516.0000"
+ },
+ {
+ "id": "1925",
+ "temp_id": "5440470",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500622.0000"
+ },
+ {
+ "id": "1926",
+ "temp_id": "5440471",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1548968.0000"
+ },
+ {
+ "id": "1927",
+ "temp_id": "5440472",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1597367.0000"
+ },
+ {
+ "id": "1928",
+ "temp_id": "5440473",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1670174.0000"
+ },
+ {
+ "id": "1929",
+ "temp_id": "5440474",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1691426.0000"
+ },
+ {
+ "id": "1930",
+ "temp_id": "5440475",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1736942.0000"
+ },
+ {
+ "id": "1931",
+ "temp_id": "5440476",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1784425.0000"
+ },
+ {
+ "id": "1932",
+ "temp_id": "5440477",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1828502.0000"
+ },
+ {
+ "id": "1933",
+ "temp_id": "5440478",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1871897.0000"
+ },
+ {
+ "id": "1934",
+ "temp_id": "5440479",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1915556.0000"
+ },
+ {
+ "id": "1935",
+ "temp_id": "5440480",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1957604.0000"
+ },
+ {
+ "id": "1936",
+ "temp_id": "5440481",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "1937",
+ "temp_id": "5440482",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1938",
+ "temp_id": "5440483",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1939",
+ "temp_id": "5440484",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1940",
+ "temp_id": "5440485",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1941",
+ "temp_id": "5440486",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1942",
+ "temp_id": "5440487",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1943",
+ "temp_id": "5440488",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1944",
+ "temp_id": "5440489",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1945",
+ "temp_id": "5440490",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1946",
+ "temp_id": "5440491",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1947",
+ "temp_id": "5440492",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1948",
+ "temp_id": "5440493",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "238484.0000"
+ },
+ {
+ "id": "1949",
+ "temp_id": "5440494",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1950",
+ "temp_id": "5440495",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "906172.0000"
+ },
+ {
+ "id": "1951",
+ "temp_id": "5440496",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1952",
+ "temp_id": "5440497",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1049248.0000"
+ },
+ {
+ "id": "1953",
+ "temp_id": "5440498",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1240016.0000"
+ },
+ {
+ "id": "1954",
+ "temp_id": "5440499",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1430784.0000"
+ },
+ {
+ "id": "1955",
+ "temp_id": "5440500",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1669220.0000"
+ },
+ {
+ "id": "1956",
+ "temp_id": "5440501",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1957",
+ "temp_id": "5440502",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1958",
+ "temp_id": "5440503",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1959",
+ "temp_id": "5440504",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1960",
+ "temp_id": "5440505",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1961",
+ "temp_id": "5440506",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1962",
+ "temp_id": "5440507",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1963",
+ "temp_id": "5440508",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1964",
+ "temp_id": "5440509",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1965",
+ "temp_id": "5440510",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1966",
+ "temp_id": "5440511",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1967",
+ "temp_id": "5440512",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1968",
+ "temp_id": "5440513",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1969",
+ "temp_id": "5440514",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1970",
+ "temp_id": "5440515",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1971",
+ "temp_id": "5440516",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1972",
+ "temp_id": "5440517",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1973",
+ "temp_id": "5440518",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1974",
+ "temp_id": "5440519",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1975",
+ "temp_id": "5440520",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1976",
+ "temp_id": "5440521",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1977",
+ "temp_id": "5440522",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "99247.0000"
+ },
+ {
+ "id": "1978",
+ "temp_id": "5440523",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "196945.0000"
+ },
+ {
+ "id": "1979",
+ "temp_id": "5440524",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "293121.0000"
+ },
+ {
+ "id": "1980",
+ "temp_id": "5440525",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "387798.0000"
+ },
+ {
+ "id": "1981",
+ "temp_id": "5440526",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "481000.0000"
+ },
+ {
+ "id": "1982",
+ "temp_id": "5440527",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "572748.0000"
+ },
+ {
+ "id": "1983",
+ "temp_id": "5440528",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "663067.0000"
+ },
+ {
+ "id": "1984",
+ "temp_id": "5440529",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "751978.0000"
+ },
+ {
+ "id": "1985",
+ "temp_id": "5440530",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "839503.0000"
+ },
+ {
+ "id": "1986",
+ "temp_id": "5440531",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "925663.0000"
+ },
+ {
+ "id": "1987",
+ "temp_id": "5440532",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1010481.0000"
+ },
+ {
+ "id": "1988",
+ "temp_id": "5440533",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1093977.0000"
+ },
+ {
+ "id": "1989",
+ "temp_id": "5440534",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1176172.0000"
+ },
+ {
+ "id": "1990",
+ "temp_id": "5440535",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1257085.0000"
+ },
+ {
+ "id": "1991",
+ "temp_id": "5440536",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1336737.0000"
+ },
+ {
+ "id": "1992",
+ "temp_id": "5440537",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1415148.0000"
+ },
+ {
+ "id": "1993",
+ "temp_id": "5440538",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1492337.0000"
+ },
+ {
+ "id": "1994",
+ "temp_id": "5440539",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1995",
+ "temp_id": "5440540",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1996",
+ "temp_id": "5440541",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1997",
+ "temp_id": "5440542",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1998",
+ "temp_id": "5440543",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1999",
+ "temp_id": "5440544",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2000",
+ "temp_id": "5440545",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2001",
+ "temp_id": "5440546",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2002",
+ "temp_id": "5440547",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2003",
+ "temp_id": "5440548",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2004",
+ "temp_id": "5440549",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2005",
+ "temp_id": "5440550",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2006",
+ "temp_id": "5440551",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2007",
+ "temp_id": "5440552",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2008",
+ "temp_id": "5440553",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2009",
+ "temp_id": "5440554",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2010",
+ "temp_id": "5440555",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2011",
+ "temp_id": "5440556",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2012",
+ "temp_id": "5440557",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2013",
+ "temp_id": "5440558",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2014",
+ "temp_id": "5440559",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2015",
+ "temp_id": "5440560",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2016",
+ "temp_id": "5440561",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2017",
+ "temp_id": "5440562",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2018",
+ "temp_id": "5440563",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2019",
+ "temp_id": "5440564",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2020",
+ "temp_id": "5440565",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2021",
+ "temp_id": "5440566",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2022",
+ "temp_id": "5440567",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2023",
+ "temp_id": "5440568",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2024",
+ "temp_id": "5440569",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2025",
+ "temp_id": "5440570",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2026",
+ "temp_id": "5440571",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2027",
+ "temp_id": "5440572",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2028",
+ "temp_id": "5440573",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2029",
+ "temp_id": "5440574",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2030",
+ "temp_id": "5440575",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2031",
+ "temp_id": "5440576",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2032",
+ "temp_id": "5440577",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2033",
+ "temp_id": "5440578",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2034",
+ "temp_id": "5440579",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2035",
+ "temp_id": "5440580",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2036",
+ "temp_id": "5440581",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2037",
+ "temp_id": "5440582",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2038",
+ "temp_id": "5440583",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2039",
+ "temp_id": "5440584",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2040",
+ "temp_id": "5440585",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2041",
+ "temp_id": "5440586",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2042",
+ "temp_id": "5440587",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2043",
+ "temp_id": "5440588",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2044",
+ "temp_id": "5440589",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2045",
+ "temp_id": "5440590",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2046",
+ "temp_id": "5440591",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2047",
+ "temp_id": "5440592",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2048",
+ "temp_id": "5440593",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2049",
+ "temp_id": "5440594",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "75550.0000"
+ },
+ {
+ "id": "2050",
+ "temp_id": "5440595",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "149980.0000"
+ },
+ {
+ "id": "2051",
+ "temp_id": "5440596",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "223295.0000"
+ },
+ {
+ "id": "2052",
+ "temp_id": "5440597",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2053",
+ "temp_id": "5440598",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "366645.0000"
+ },
+ {
+ "id": "2054",
+ "temp_id": "5440599",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "436714.0000"
+ },
+ {
+ "id": "2055",
+ "temp_id": "5440600",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2056",
+ "temp_id": "5440601",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "573718.0000"
+ },
+ {
+ "id": "2057",
+ "temp_id": "5440602",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "640685.0000"
+ },
+ {
+ "id": "2058",
+ "temp_id": "5440603",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "706649.0000"
+ },
+ {
+ "id": "2059",
+ "temp_id": "5440604",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "771624.0000"
+ },
+ {
+ "id": "2060",
+ "temp_id": "5440605",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2061",
+ "temp_id": "5440606",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "898669.0000"
+ },
+ {
+ "id": "2062",
+ "temp_id": "5440607",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "960768.0000"
+ },
+ {
+ "id": "2063",
+ "temp_id": "5440608",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2064",
+ "temp_id": "5440609",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1082189.0000"
+ },
+ {
+ "id": "2065",
+ "temp_id": "5440610",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1141539.0000"
+ },
+ {
+ "id": "2066",
+ "temp_id": "5440611",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2242160.0000"
+ },
+ {
+ "id": "2067",
+ "temp_id": "5440612",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2297469.0000"
+ },
+ {
+ "id": "2068",
+ "temp_id": "5440613",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2351893.0000"
+ },
+ {
+ "id": "2069",
+ "temp_id": "5440614",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2405447.0000"
+ },
+ {
+ "id": "2070",
+ "temp_id": "5440615",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2071",
+ "temp_id": "5440616",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2510000.0000"
+ },
+ {
+ "id": "2072",
+ "temp_id": "5440617",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2510000.0000"
+ },
+ {
+ "id": "2073",
+ "temp_id": "5440618",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2074",
+ "temp_id": "5440619",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2075",
+ "temp_id": "5440620",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2076",
+ "temp_id": "5440621",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2077",
+ "temp_id": "5440622",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2078",
+ "temp_id": "5440623",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2079",
+ "temp_id": "5440624",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2080",
+ "temp_id": "5440625",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2081",
+ "temp_id": "5440626",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2082",
+ "temp_id": "5440627",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2083",
+ "temp_id": "5440628",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2084",
+ "temp_id": "5440629",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2085",
+ "temp_id": "5440630",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2086",
+ "temp_id": "5440631",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2087",
+ "temp_id": "5440632",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2088",
+ "temp_id": "5440633",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2089",
+ "temp_id": "5440634",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2090",
+ "temp_id": "5440635",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "882130.0000"
+ },
+ {
+ "id": "2091",
+ "temp_id": "5440636",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "882130.0000"
+ },
+ {
+ "id": "2092",
+ "temp_id": "5440637",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "942815.0000"
+ },
+ {
+ "id": "2093",
+ "temp_id": "5440638",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2094",
+ "temp_id": "5440639",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2095",
+ "temp_id": "5440640",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2096",
+ "temp_id": "5440641",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2097",
+ "temp_id": "5440642",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2098",
+ "temp_id": "5440643",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2099",
+ "temp_id": "5440644",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2100",
+ "temp_id": "5440645",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2101",
+ "temp_id": "5440646",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2102",
+ "temp_id": "5440647",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2103",
+ "temp_id": "5440648",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2104",
+ "temp_id": "5440649",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2105",
+ "temp_id": "5440650",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2106",
+ "temp_id": "5440651",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2107",
+ "temp_id": "5440652",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2108",
+ "temp_id": "5440653",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2109",
+ "temp_id": "5440654",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2110",
+ "temp_id": "5440655",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2111",
+ "temp_id": "5440656",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2112",
+ "temp_id": "5440657",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2113",
+ "temp_id": "5440658",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2114",
+ "temp_id": "5440659",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "465013.0000"
+ },
+ {
+ "id": "2115",
+ "temp_id": "5440660",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "484652.0000"
+ },
+ {
+ "id": "2116",
+ "temp_id": "5440661",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "503985.0000"
+ },
+ {
+ "id": "2117",
+ "temp_id": "5440662",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "523017.0000"
+ },
+ {
+ "id": "2118",
+ "temp_id": "5440663",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "541753.0000"
+ },
+ {
+ "id": "2119",
+ "temp_id": "5440664",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "560197.0000"
+ },
+ {
+ "id": "2120",
+ "temp_id": "5440665",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "578354.0000"
+ },
+ {
+ "id": "2121",
+ "temp_id": "5440666",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "596228.0000"
+ },
+ {
+ "id": "2122",
+ "temp_id": "5440667",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "613824.0000"
+ },
+ {
+ "id": "2123",
+ "temp_id": "5440668",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "631146.0000"
+ },
+ {
+ "id": "2124",
+ "temp_id": "5440669",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "648198.0000"
+ },
+ {
+ "id": "2125",
+ "temp_id": "5440670",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "664985.0000"
+ },
+ {
+ "id": "2126",
+ "temp_id": "5440671",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "681511.0000"
+ },
+ {
+ "id": "2127",
+ "temp_id": "5440672",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "697779.0000"
+ },
+ {
+ "id": "2128",
+ "temp_id": "5440673",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "713794.0000"
+ },
+ {
+ "id": "2129",
+ "temp_id": "5440674",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "729560.0000"
+ },
+ {
+ "id": "2130",
+ "temp_id": "5440675",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "750000.0000"
+ },
+ {
+ "id": "2131",
+ "temp_id": "5440676",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2132",
+ "temp_id": "5440677",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2133",
+ "temp_id": "5440678",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2134",
+ "temp_id": "5440679",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2135",
+ "temp_id": "5440680",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2136",
+ "temp_id": "5440681",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2137",
+ "temp_id": "5440682",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2138",
+ "temp_id": "5440683",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2139",
+ "temp_id": "5440684",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "963178.0000"
+ },
+ {
+ "id": "2140",
+ "temp_id": "5440685",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1001993.0000"
+ },
+ {
+ "id": "2141",
+ "temp_id": "5440686",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1040725.0000"
+ },
+ {
+ "id": "2142",
+ "temp_id": "5440687",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1078289.0000"
+ },
+ {
+ "id": "2143",
+ "temp_id": "5440688",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1116974.0000"
+ },
+ {
+ "id": "2144",
+ "temp_id": "5440689",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1153346.0000"
+ },
+ {
+ "id": "2145",
+ "temp_id": "5440690",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1189049.0000"
+ },
+ {
+ "id": "2146",
+ "temp_id": "5440691",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1224904.0000"
+ },
+ {
+ "id": "2147",
+ "temp_id": "5440692",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1259562.0000"
+ },
+ {
+ "id": "2148",
+ "temp_id": "5440693",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1294333.0000"
+ },
+ {
+ "id": "2149",
+ "temp_id": "5440694",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1327889.0000"
+ },
+ {
+ "id": "2150",
+ "temp_id": "5440695",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1360912.0000"
+ },
+ {
+ "id": "2151",
+ "temp_id": "5440696",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1394108.0000"
+ },
+ {
+ "id": "2152",
+ "temp_id": "5440697",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2153",
+ "temp_id": "5440698",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1426079.0000"
+ },
+ {
+ "id": "2154",
+ "temp_id": "5440699",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500000.0000"
+ },
+ {
+ "id": "2155",
+ "temp_id": "5440700",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2156",
+ "temp_id": "5440701",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2157",
+ "temp_id": "5440702",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2158",
+ "temp_id": "5440703",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2159",
+ "temp_id": "5440704",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2160",
+ "temp_id": "5440705",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2161",
+ "temp_id": "5440706",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2162",
+ "temp_id": "5440707",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2163",
+ "temp_id": "5440708",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2164",
+ "temp_id": "5440709",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "879677.0000"
+ },
+ {
+ "id": "2165",
+ "temp_id": "5440710",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "940470.0000"
+ },
+ {
+ "id": "2166",
+ "temp_id": "5440711",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "999804.0000"
+ },
+ {
+ "id": "2167",
+ "temp_id": "5440712",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1059832.0000"
+ },
+ {
+ "id": "2168",
+ "temp_id": "5440713",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1117256.0000"
+ },
+ {
+ "id": "2169",
+ "temp_id": "5440714",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1173762.0000"
+ },
+ {
+ "id": "2170",
+ "temp_id": "5440715",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1229999.0000"
+ },
+ {
+ "id": "2171",
+ "temp_id": "5440716",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1286501.0000"
+ },
+ {
+ "id": "2172",
+ "temp_id": "5440717",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1341019.0000"
+ },
+ {
+ "id": "2173",
+ "temp_id": "5440718",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1416632.0000"
+ },
+ {
+ "id": "2174",
+ "temp_id": "5440719",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1445630.0000"
+ },
+ {
+ "id": "2175",
+ "temp_id": "5440720",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500000.0000"
+ },
+ {
+ "id": "2176",
+ "temp_id": "5440721",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2177",
+ "temp_id": "5440722",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2178",
+ "temp_id": "5440723",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2179",
+ "temp_id": "5440724",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2180",
+ "temp_id": "5440725",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2181",
+ "temp_id": "5440726",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2182",
+ "temp_id": "5440727",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2183",
+ "temp_id": "5440728",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2184",
+ "temp_id": "5440729",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2185",
+ "temp_id": "5440730",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ }
+ ],
+ "com_enquiry_details": [
+ {
+ "id": "146",
+ "temp_id": "94416",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-11 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "2000000.0"
+ },
+ {
+ "id": "147",
+ "temp_id": "94417",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-10 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "1000.0"
+ },
+ {
+ "id": "148",
+ "temp_id": "94418",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-10 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "5000000.0"
+ },
+ {
+ "id": "149",
+ "temp_id": "94419",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-05 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "3060000.0"
+ },
+ {
+ "id": "150",
+ "temp_id": "94420",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-04 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "2500000.0"
+ },
+ {
+ "id": "151",
+ "temp_id": "94421",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-03 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "3500000.0"
+ },
+ {
+ "id": "152",
+ "temp_id": "94422",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-03 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "1000000.0"
+ },
+ {
+ "id": "153",
+ "temp_id": "94423",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-03 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Others",
+ "EnquiryDetailsEnquiryAmt": "2500000.0"
+ },
+ {
+ "id": "154",
+ "temp_id": "94424",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2021-12-30 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Medium term loan (pe",
+ "EnquiryDetailsEnquiryAmt": "1000000.0"
+ },
+ {
+ "id": "155",
+ "temp_id": "94425",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2021-12-30 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Medium term loan (pe",
+ "EnquiryDetailsEnquiryAmt": "1000000.0"
+ }
+ ],
+ "com_borrower_details": [
+ {
+ "id": "1",
+ "temp_id": "6605",
+ "ApplicationRefno": "202201111930347000000",
+ "EnqInfoBorrowerName": "AAKASH POLYTECH PRIVATE LIMITED"
+ }
+ ]
+ },
+ "masters": {
+ "dpd_month_buckets": [
+ {
+ "id": "1",
+ "name": "0+",
+ "range_from": "1",
+ "range_to": "29",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 11:10:13.110000",
+ "updatedon": "2022-04-15 11:10:13.110000"
+ },
+ {
+ "id": "2",
+ "name": "30+",
+ "range_from": "30",
+ "range_to": "59",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ },
+ {
+ "id": "3",
+ "name": "60+",
+ "range_from": "60",
+ "range_to": "89",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ },
+ {
+ "id": "4",
+ "name": "90+",
+ "range_from": "90",
+ "range_to": "179",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ },
+ {
+ "id": "5",
+ "name": "180+",
+ "range_from": "None",
+ "range_to": "180",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ }
+ ],
+ "sanction_summary_month_buckets": [
+ {
+ "id": "6",
+ "name": "1",
+ "range_from": "1",
+ "range_to": "1",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "7",
+ "name": "2-3",
+ "range_from": "2",
+ "range_to": "3",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "8",
+ "name": "4-6",
+ "range_from": "4",
+ "range_to": "6",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "9",
+ "name": "7-12",
+ "range_from": "7",
+ "range_to": "12",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "10",
+ "name": "13-24",
+ "range_from": "13",
+ "range_to": "24",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "11",
+ "name": "26-36",
+ "range_from": "25",
+ "range_to": "36",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "12",
+ "name": ">36",
+ "range_from": "None",
+ "range_to": "36",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ }
+ ],
+ "enquiry_summary_month_buckets": [
+ {
+ "id": "13",
+ "name": "1",
+ "range_from": "1",
+ "range_to": "1",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "14",
+ "name": "2-3",
+ "range_from": "2",
+ "range_to": "3",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "15",
+ "name": "4-6",
+ "range_from": "4",
+ "range_to": "6",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "16",
+ "name": "7-12",
+ "range_from": "7",
+ "range_to": "12",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "17",
+ "name": "13-24",
+ "range_from": "13",
+ "range_to": "24",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "18",
+ "name": "26-36",
+ "range_from": "25",
+ "range_to": "36",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "19",
+ "name": ">36",
+ "range_from": "None",
+ "range_to": "36",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ }
+ ]
+ }
+ }
\ No newline at end of file
diff --git a/com.json b/com.json
new file mode 100644
index 0000000..c0be9f8
--- /dev/null
+++ b/com.json
@@ -0,0 +1,24684 @@
+{
+ "commercial_cibil_rawdata": {
+ "com_credit_facility_current_details": [
+ {
+ "id": "3",
+ "temp_id": "226607",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 1",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "10 Days Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-07-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "73740.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "1420049.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-09-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "4",
+ "temp_id": "226608",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 2",
+ "CreditFacilityCDcfType": "Demand loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "14 Days Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-01-21",
+ "CreditFacilityCDLstReportedDate": "2020-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3750000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "183164.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "1467418.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-13 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-08-06 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "5",
+ "temp_id": "226609",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 3",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "15 Days Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1515000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1515000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-17 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "6",
+ "temp_id": "226610",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 4",
+ "CreditFacilityCDcfType": "Demand loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "9 Days Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-08-14",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "680000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "19975.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-11-23 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-12-04 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "48",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "7",
+ "temp_id": "226611",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 5",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3000000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "104732.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2021-12-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "8",
+ "temp_id": "226612",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 6",
+ "CreditFacilityCDcfType": "GECL Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-07-01",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4800000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "4800000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "4223612.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "4223612.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2020-07-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2024-07-01 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "48",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "9",
+ "temp_id": "226613",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 7",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "6997500.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "6997500.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "6997500.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2031-05-31 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "10",
+ "temp_id": "226614",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 8",
+ "CreditFacilityCDcfType": "Auto Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Restructured Due to Natural Calamity,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-26",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3100000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3100000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2623481.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2655792.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-12-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2027-05-26 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "89",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "Restructured due to COVID-19",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "NULL"
+ },
+ {
+ "id": "11",
+ "temp_id": "226615",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 9",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "22779900.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "22779900.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "22779900.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2022-10-10 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "12",
+ "temp_id": "226616",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 10",
+ "CreditFacilityCDcfType": "Auto Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Restructured Due to Natural Calamity,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-11-13",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1265323.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "1280616.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-11-13 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2027-06-13 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "91",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "Restructured due to COVID-19",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "NULL"
+ },
+ {
+ "id": "13",
+ "temp_id": "226617",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 11",
+ "CreditFacilityCDcfType": "Cash credit",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2011-08-04",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "40000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "40000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "36442665.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "39828828.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2011-08-04 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2022-03-24 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "2022-03-24 00:00:00",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "128",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "NULL",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "6",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "14",
+ "temp_id": "226618",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 12",
+ "CreditFacilityCDcfType": "Long term loan (period above 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Restructured Due to Natural Calamity,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-09-26",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4575000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "4575000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3466648.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "3520500.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2026-02-26 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "89",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "Restructured due to COVID-19",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "15",
+ "temp_id": "226619",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 13",
+ "CreditFacilityCDcfType": "Long term loan (period above 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2021-10-29",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4400000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "4400000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "4402712.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "4402712.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2021-10-29 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2026-10-29 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "60",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Partial",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "16",
+ "temp_id": "226620",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 14",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "11320920.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "11320920.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "11320920.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2024-04-25 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "17",
+ "temp_id": "226621",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 15",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-07-01",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "782832.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "782832.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2020-07-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2022-07-01 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "18",
+ "temp_id": "226622",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 16",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "12284995.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "12284995.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "12284995.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2025-04-19 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "19",
+ "temp_id": "226623",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 17",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4900000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "4900000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "4900000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2026-11-19 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "20",
+ "temp_id": "226624",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 18",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2019-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1334801.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "21",
+ "temp_id": "226625",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 19",
+ "CreditFacilityCDcfType": "Loan extended through credit cards",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-10-11",
+ "CreditFacilityCDLstReportedDate": "2021-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-10-04 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-10-31 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "22",
+ "temp_id": "226626",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 20",
+ "CreditFacilityCDcfType": "Overdraft",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2011-07-08",
+ "CreditFacilityCDLstReportedDate": "2021-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "0.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "44.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "24924.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2011-07-08 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "23",
+ "temp_id": "226627",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 21",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-06-29",
+ "CreditFacilityCDLstReportedDate": "2019-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "5100000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "5100000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "5100000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-06-29 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "24",
+ "temp_id": "226628",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 22",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-01-22",
+ "CreditFacilityCDLstReportedDate": "2019-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "675810.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "675810.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "675810.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-01-22 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "25",
+ "temp_id": "226629",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 23",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-11-26",
+ "CreditFacilityCDLstReportedDate": "2018-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1501370.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1501370.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "1501370.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-11-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "26",
+ "temp_id": "226630",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 24",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-05-23",
+ "CreditFacilityCDLstReportedDate": "2018-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2080000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2080000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2080000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-05-23 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "27",
+ "temp_id": "226631",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 25",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-06-27",
+ "CreditFacilityCDLstReportedDate": "2018-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2321280.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2321280.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2321280.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-06-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "28",
+ "temp_id": "226632",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 26",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-05-25",
+ "CreditFacilityCDLstReportedDate": "2018-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "870000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "870000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "870000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-05-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "29",
+ "temp_id": "226633",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 27",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-04-20",
+ "CreditFacilityCDLstReportedDate": "2018-04-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "700000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "700000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "700000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-04-20 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "30",
+ "temp_id": "226634",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 28",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-05-25",
+ "CreditFacilityCDLstReportedDate": "2018-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "730000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "730000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "730000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-05-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "31",
+ "temp_id": "226635",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 29",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-03-21",
+ "CreditFacilityCDLstReportedDate": "2019-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2987927.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2987927.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2987927.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-03-21 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "32",
+ "temp_id": "226636",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 30",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-03-22",
+ "CreditFacilityCDLstReportedDate": "2019-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3392073.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3392073.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "3392073.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-03-22 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "33",
+ "temp_id": "226637",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 31",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3017870.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3017870.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-05-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "34",
+ "temp_id": "226638",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 32",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3222130.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3222130.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-05-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "35",
+ "temp_id": "226639",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 33",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1200000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1200000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-05-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "36",
+ "temp_id": "226640",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 34",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "2000000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "37",
+ "temp_id": "226641",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 35",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "300000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "300000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-02-14 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "38",
+ "temp_id": "226642",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 36",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3449000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3449000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-02-17 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "39",
+ "temp_id": "226643",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 37",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "400000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "400000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-02-14 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "40",
+ "temp_id": "226644",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 38",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3010150.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3010150.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-01-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "41",
+ "temp_id": "226645",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 39",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3300000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "3300000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-12-29 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "42",
+ "temp_id": "226646",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 40",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2016-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1000000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-10-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "43",
+ "temp_id": "226647",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 41",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2016-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "500000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-10-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "44",
+ "temp_id": "226648",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 42",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2016-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1190000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1190000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-10-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "45",
+ "temp_id": "226649",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 43",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2015-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "150000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "150000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-05-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "46",
+ "temp_id": "226650",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 44",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2015-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "150000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "150000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-05-29 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "47",
+ "temp_id": "226651",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 45",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2015-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "200000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "200000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-02-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "48",
+ "temp_id": "226652",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 46",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2015-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "700000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "700000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-02-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "49",
+ "temp_id": "226653",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 47",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2014-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "543000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "543000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-12-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "50",
+ "temp_id": "226654",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 48",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2014-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "500000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-12-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "51",
+ "temp_id": "226655",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 49",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2014-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "168332.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "168331.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-05-24 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "52",
+ "temp_id": "226656",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 50",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "107123.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "107123.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-10-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "53",
+ "temp_id": "226657",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 51",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "103461.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "103461.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-09-16 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "54",
+ "temp_id": "226658",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 52",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "73644.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "73644.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-10-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "55",
+ "temp_id": "226659",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 53",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-07-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "48900.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "48900.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-06-24 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "56",
+ "temp_id": "226660",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 54",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2012-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "129034.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "129034.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2012-12-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "57",
+ "temp_id": "226661",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 55",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2012-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "895594.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "895594.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2012-12-25 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "58",
+ "temp_id": "226662",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 56",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "76748.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "76748.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-05-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "59",
+ "temp_id": "226663",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 57",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-04-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "65325.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "65325.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-04-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "60",
+ "temp_id": "226664",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 58",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2013-02-28",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "240562.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "240562.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-02-20 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "61",
+ "temp_id": "226665",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 59",
+ "CreditFacilityCDcfType": "Others",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Open,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2012-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "125000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "125000.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2012-11-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "62",
+ "temp_id": "226666",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 60",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-18",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "127413.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "2500.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-09-02 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "NULL"
+ },
+ {
+ "id": "63",
+ "temp_id": "226667",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 61",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "225000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "0.0000",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-11-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2015-12-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "64",
+ "temp_id": "226668",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 62",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1530000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "0.0000",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-05-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2017-06-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "65",
+ "temp_id": "226669",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 63",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2005500.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-24 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-09-02 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "66",
+ "temp_id": "226670",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 64",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-08-09",
+ "CreditFacilityCDLstReportedDate": "2021-11-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1025000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "0.0000",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2015-11-26 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2018-12-02 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "67",
+ "temp_id": "226671",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 65",
+ "CreditFacilityCDcfType": "Overdraft",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2021-04-15",
+ "CreditFacilityCDLstReportedDate": "2021-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "5850000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "5850000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "4834744.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "4834744.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2019-07-05 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-07-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "2021-07-05 00:00:00",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "68",
+ "temp_id": "226672",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 66",
+ "CreditFacilityCDcfType": "Property Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2021-04-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "10125000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "10125000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-12-30 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "120",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "69",
+ "temp_id": "226673",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 67",
+ "CreditFacilityCDcfType": "Short term loan (less than 1 year)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2021-03-31",
+ "CreditFacilityCDLstReportedDate": "2021-03-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "978581.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "978581.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "978844.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "8.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "8.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2020-09-03 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-03-31 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "7",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "70",
+ "temp_id": "226674",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 68",
+ "CreditFacilityCDcfType": "Long term loan (period above 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2017-05-04",
+ "CreditFacilityCDLstReportedDate": "2019-11-25",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "4700000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "4700000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2011-09-23 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2017-03-23 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "66",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "71",
+ "temp_id": "226675",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 69",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2014-11-29",
+ "CreditFacilityCDLstReportedDate": "2016-09-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "8000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2014-06-09 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "72",
+ "temp_id": "226676",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 70",
+ "CreditFacilityCDcfType": "Auto Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-24",
+ "CreditFacilityCDLstReportedDate": "2019-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "600000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "600000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "250494.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "12332.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "239545.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-08-12 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-08-12 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "60",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "73",
+ "temp_id": "226677",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 71",
+ "CreditFacilityCDcfType": "Auto Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-01-01",
+ "CreditFacilityCDLstReportedDate": "2019-11-25",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "440000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "440000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "10.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "10.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2013-11-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2018-11-01 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "60",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "74",
+ "temp_id": "226678",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 72",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-08-31",
+ "CreditFacilityCDLstReportedDate": "2020-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2509116.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2509116.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-08-11 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "75",
+ "temp_id": "226679",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 73",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "91956.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "76",
+ "temp_id": "226680",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 74",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "101304.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "77",
+ "temp_id": "226681",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 75",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1250000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1250000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "751221.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-02 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "78",
+ "temp_id": "226682",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 76",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2020-06-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "1295629.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-22 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "79",
+ "temp_id": "226683",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 77",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-01-01",
+ "CreditFacilityCDLstReportedDate": "2020-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "106958.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-27 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-01-01 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "80",
+ "temp_id": "226684",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 78",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2020-01-07",
+ "CreditFacilityCDLstReportedDate": "2020-01-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2000000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "79928.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-08-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-01-07 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "15",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "81",
+ "temp_id": "226685",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 79",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Settled & Closed,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2019-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3535000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "3535000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "3535000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "127799.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "127799.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-10-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "37",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "82",
+ "temp_id": "226686",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 80",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-16",
+ "CreditFacilityCDLstReportedDate": "2019-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-24 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Others",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "83",
+ "temp_id": "226687",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 81",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-12-26",
+ "CreditFacilityCDLstReportedDate": "2019-12-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2000000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "1349983.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-09-02 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-09-04 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Others",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "84",
+ "temp_id": "226688",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 82",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-07-31",
+ "CreditFacilityCDLstReportedDate": "2019-10-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "3000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "47692.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-02-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-09-28 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Others",
+ "CreditFacilityCDODTenure": "18",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "85",
+ "temp_id": "226689",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 83",
+ "CreditFacilityCDcfType": "Hire purchase",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-10-31",
+ "CreditFacilityCDLstReportedDate": "2019-10-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2000000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-01 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "Others",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "NULL"
+ },
+ {
+ "id": "86",
+ "temp_id": "226690",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 84",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2019-09-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "0.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "52000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-09-26 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "87",
+ "temp_id": "226691",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 85",
+ "CreditFacilityCDcfType": "Bank guarantee",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2019-09-30",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "0.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "0.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "40205.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "None",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-09-02 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Bullet",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "88",
+ "temp_id": "226692",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 86",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2019-05-22",
+ "CreditFacilityCDLstReportedDate": "2019-05-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1200000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1645518.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "1200000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "1239.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "0.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-16 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2019-05-22 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "18",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Full",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "0.0000",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "0.0000",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "89",
+ "temp_id": "226693",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 87",
+ "CreditFacilityCDcfType": "Property Loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Settled & Closed,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "2510000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "2510000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "2510000.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "92643.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "92643.0000",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2018-01-31 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2021-02-05 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "NULL",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "90",
+ "temp_id": "226694",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 88",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "0 Day Past Due",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-07-28 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "91",
+ "temp_id": "226695",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 89",
+ "CreditFacilityCDcfType": "Medium term loan (period above 1 year and up to 3 years)",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "750000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "750000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "None",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "0.0000",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-14 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "NULL",
+ "CreditFacilityCDODTenure": "None",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "92",
+ "temp_id": "226696",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 90",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "2018-08-23",
+ "CreditFacilityCDLstReportedDate": "2018-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "0.0000",
+ "CreditFacilityCDAmtinstallmentAmt": "0.0000",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "0.0000",
+ "CreditFacilityCDAmtWrittenOFF": "0.0000",
+ "CreditFacilityCDAmtSettled": "None",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2017-03-18 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "2020-03-04 00:00:00",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Others",
+ "CreditFacilityCDODTenure": "36",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "Nil",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ },
+ {
+ "id": "93",
+ "temp_id": "226697",
+ "ApplicationRefno": "202201111930347000000",
+ "CreditFacilityDetailsBorrowerSecMsg": "NULL",
+ "CreditFacilityCDDerivative": "false",
+ "CreditFacilityCDAccountNo": "Not Disclosed",
+ "CreditFacilityCDcfSrNo": "Credit Facility 91",
+ "CreditFacilityCDcfType": "Unsecured business loan",
+ "CreditFacilityCDcfMember": "Not Disclosed",
+ "CreditFacilityCDAssetCDPDueDpd": "Standard",
+ "CreditFacilityCDStatus": "Not a Suit Filed Case,Closed By Payment,Not Wilful Defaulter",
+ "CreditFacilityCDStatusDate": "None",
+ "CreditFacilityCDLstReportedDate": "2017-08-31",
+ "CreditFacilityCDAmtCurrency": "INR",
+ "CreditFacilityCDAmtSanctionedAmt": "1500000.0000",
+ "CreditFacilityCDAmtSanctionedAmtDP": "1500000.0000",
+ "CreditFacilityCDAmtoutstandingBalance": "0.0000",
+ "CreditFacilityCDAmtmarkToMarket": "NULL",
+ "CreditFacilityCDAmtOverdue": "0",
+ "CreditFacilityCDAmtHighCredit": "None",
+ "CreditFacilityCDAmtinstallmentAmt": "None",
+ "CreditFacilityCDAmtSuitFiledAmt": "None",
+ "CreditFacilityCDAmtLastRepaid": "None",
+ "CreditFacilityCDAmtWrittenOFF": "None",
+ "CreditFacilityCDAmtSettled": "42853.0000",
+ "CreditFacilityCDAmtNaorc": "None",
+ "CreditFacilityCDAmtContrctCAsNPA": "None",
+ "CreditFacilityCDAmtNAmtOfContracts": "None",
+ "CreditFacilityCDDatesSanctionedDt": "2016-06-18 00:00:00",
+ "CreditFacilityCDDatesLoanExpiryDt": "None",
+ "CreditFacilityCDDatesLoanRenewalDt": "None",
+ "CreditFacilityCDDatesSuitFiledDt": "None",
+ "CreditFacilityCDDatesWilfulDefault": "None",
+ "CreditFacilityCDODRepaymentFrequency": "Monthly",
+ "CreditFacilityCDODTenure": "24",
+ "CreditFacilityCDODWAMPContracts": "NULL",
+ "CreditFacilityCDODRestructingReason": "NULL",
+ "CreditFacilityCDODABSecurityCoverage": "NULL",
+ "CreditFacilityOverdueDetailsMsg": "No Amount Overdue Information Reported",
+ "CreditFacilityOverdueDetailsDPD1to30Amt": "None",
+ "CreditFacilityOverdueDetailsDPD31to60amt": "None",
+ "CreditFacilityOverdueDetailsDPD61t090amt": "None",
+ "CreditFacilityOverdueDetailsDPD91to180amt": "None",
+ "CreditFacilityOverdueDetailsDPDabove180amt": "None",
+ "ChequeDDIFundsMsg": "No Dishonored Cheques Due To Non Sufficient Funds Reported",
+ "ChequeDDIFundsCD3monthcount": "NULL",
+ "ChequeDDIFundsCD4to6monthcount": "NULL",
+ "ChequeDDIFundsCD10to12monthcount": "NULL",
+ "CFSecurityDetailsMsg": "No Security Details Reported",
+ "CreditFacilityGuarantorDVecMsg": "No Guarantor Details Reported"
+ }
+ ],
+ "com_dpd_details": [
+ {
+ "id": "2",
+ "temp_id": "5438547",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "3",
+ "temp_id": "5438548",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "4",
+ "temp_id": "5438549",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "5",
+ "temp_id": "5438550",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "6",
+ "temp_id": "5438551",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "7",
+ "temp_id": "5438552",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "8",
+ "temp_id": "5438553",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "9",
+ "temp_id": "5438554",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "10",
+ "temp_id": "5438555",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "11",
+ "temp_id": "5438556",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "12",
+ "temp_id": "5438557",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "13",
+ "temp_id": "5438558",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "14",
+ "temp_id": "5438559",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "15",
+ "temp_id": "5438560",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "16",
+ "temp_id": "5438561",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "17",
+ "temp_id": "5438562",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "18",
+ "temp_id": "5438563",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "19",
+ "temp_id": "5438564",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "20",
+ "temp_id": "5438565",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1303126.0000"
+ },
+ {
+ "id": "21",
+ "temp_id": "5438566",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "22",
+ "temp_id": "5438567",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1455827.0000"
+ },
+ {
+ "id": "23",
+ "temp_id": "5438568",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "24",
+ "temp_id": "5438569",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "25",
+ "temp_id": "5438570",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "1",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "26",
+ "temp_id": "5438571",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1382419.0000"
+ },
+ {
+ "id": "27",
+ "temp_id": "5438572",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1545301.0000"
+ },
+ {
+ "id": "28",
+ "temp_id": "5438573",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1706073.0000"
+ },
+ {
+ "id": "29",
+ "temp_id": "5438574",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1864762.0000"
+ },
+ {
+ "id": "30",
+ "temp_id": "5438575",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2021395.0000"
+ },
+ {
+ "id": "31",
+ "temp_id": "5438576",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2175999.0000"
+ },
+ {
+ "id": "32",
+ "temp_id": "5438577",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2328601.0000"
+ },
+ {
+ "id": "33",
+ "temp_id": "5438578",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2479225.0000"
+ },
+ {
+ "id": "34",
+ "temp_id": "5438579",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2627898.0000"
+ },
+ {
+ "id": "35",
+ "temp_id": "5438580",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2774645.0000"
+ },
+ {
+ "id": "36",
+ "temp_id": "5438581",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2919491.0000"
+ },
+ {
+ "id": "37",
+ "temp_id": "5438582",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3062460.0000"
+ },
+ {
+ "id": "38",
+ "temp_id": "5438583",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3203577.0000"
+ },
+ {
+ "id": "39",
+ "temp_id": "5438584",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3342866.0000"
+ },
+ {
+ "id": "40",
+ "temp_id": "5438585",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3480351.0000"
+ },
+ {
+ "id": "41",
+ "temp_id": "5438586",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "3616054.0000"
+ },
+ {
+ "id": "42",
+ "temp_id": "5438587",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "4395936.0000"
+ },
+ {
+ "id": "43",
+ "temp_id": "5438588",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "44",
+ "temp_id": "5438589",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "45",
+ "temp_id": "5438590",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "46",
+ "temp_id": "5438591",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "47",
+ "temp_id": "5438592",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "48",
+ "temp_id": "5438593",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "49",
+ "temp_id": "5438594",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "2",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "50",
+ "temp_id": "5438595",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "632978.0000"
+ },
+ {
+ "id": "51",
+ "temp_id": "5438596",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "697957.0000"
+ },
+ {
+ "id": "52",
+ "temp_id": "5438597",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "762324.0000"
+ },
+ {
+ "id": "53",
+ "temp_id": "5438598",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "762324.0000"
+ },
+ {
+ "id": "54",
+ "temp_id": "5438599",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "887844.0000"
+ },
+ {
+ "id": "55",
+ "temp_id": "5438600",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "948964.0000"
+ },
+ {
+ "id": "56",
+ "temp_id": "5438601",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1068964.0000"
+ },
+ {
+ "id": "57",
+ "temp_id": "5438602",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1068964.0000"
+ },
+ {
+ "id": "58",
+ "temp_id": "5438603",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1127342.0000"
+ },
+ {
+ "id": "59",
+ "temp_id": "5438604",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1242030.0000"
+ },
+ {
+ "id": "60",
+ "temp_id": "5438605",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1242030.0000"
+ },
+ {
+ "id": "61",
+ "temp_id": "5438606",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1299692.0000"
+ },
+ {
+ "id": "62",
+ "temp_id": "5438607",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1408631.0000"
+ },
+ {
+ "id": "63",
+ "temp_id": "5438608",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1408631.0000"
+ },
+ {
+ "id": "64",
+ "temp_id": "5438609",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1515000.0000"
+ },
+ {
+ "id": "65",
+ "temp_id": "5438610",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1515000.0000"
+ },
+ {
+ "id": "66",
+ "temp_id": "5438611",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "67",
+ "temp_id": "5438612",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "68",
+ "temp_id": "5438613",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "69",
+ "temp_id": "5438614",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "70",
+ "temp_id": "5438615",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "71",
+ "temp_id": "5438616",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "72",
+ "temp_id": "5438617",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "73",
+ "temp_id": "5438618",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "3",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "74",
+ "temp_id": "5438619",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "339575.0000"
+ },
+ {
+ "id": "75",
+ "temp_id": "5438620",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "313060.0000"
+ },
+ {
+ "id": "76",
+ "temp_id": "5438621",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "328113.0000"
+ },
+ {
+ "id": "77",
+ "temp_id": "5438622",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "342944.0000"
+ },
+ {
+ "id": "78",
+ "temp_id": "5438623",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "357556.0000"
+ },
+ {
+ "id": "79",
+ "temp_id": "5438624",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "371951.0000"
+ },
+ {
+ "id": "80",
+ "temp_id": "5438625",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "386134.0000"
+ },
+ {
+ "id": "81",
+ "temp_id": "5438626",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "400108.0000"
+ },
+ {
+ "id": "82",
+ "temp_id": "5438627",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "413875.0000"
+ },
+ {
+ "id": "83",
+ "temp_id": "5438628",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "427438.0000"
+ },
+ {
+ "id": "84",
+ "temp_id": "5438629",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "440801.0000"
+ },
+ {
+ "id": "85",
+ "temp_id": "5438630",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "453966.0000"
+ },
+ {
+ "id": "86",
+ "temp_id": "5438631",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "466937.0000"
+ },
+ {
+ "id": "87",
+ "temp_id": "5438632",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "479716.0000"
+ },
+ {
+ "id": "88",
+ "temp_id": "5438633",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "492307.0000"
+ },
+ {
+ "id": "89",
+ "temp_id": "5438634",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "504711.0000"
+ },
+ {
+ "id": "90",
+ "temp_id": "5438635",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "516932.0000"
+ },
+ {
+ "id": "91",
+ "temp_id": "5438636",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "528973.0000"
+ },
+ {
+ "id": "92",
+ "temp_id": "5438637",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "540835.0000"
+ },
+ {
+ "id": "93",
+ "temp_id": "5438638",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "552522.0000"
+ },
+ {
+ "id": "94",
+ "temp_id": "5438639",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "564036.0000"
+ },
+ {
+ "id": "95",
+ "temp_id": "5438640",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "96",
+ "temp_id": "5438641",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "97",
+ "temp_id": "5438642",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "4",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "799000.0000"
+ },
+ {
+ "id": "98",
+ "temp_id": "5438643",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "99",
+ "temp_id": "5438644",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "100",
+ "temp_id": "5438645",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "101",
+ "temp_id": "5438646",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "102",
+ "temp_id": "5438647",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "103",
+ "temp_id": "5438648",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "104",
+ "temp_id": "5438649",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "105",
+ "temp_id": "5438650",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "106",
+ "temp_id": "5438651",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "107",
+ "temp_id": "5438652",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "108",
+ "temp_id": "5438653",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "109",
+ "temp_id": "5438654",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "110",
+ "temp_id": "5438655",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "111",
+ "temp_id": "5438656",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "112",
+ "temp_id": "5438657",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "113",
+ "temp_id": "5438658",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "114",
+ "temp_id": "5438659",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "115",
+ "temp_id": "5438660",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "116",
+ "temp_id": "5438661",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "117",
+ "temp_id": "5438662",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "118",
+ "temp_id": "5438663",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "119",
+ "temp_id": "5438664",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "120",
+ "temp_id": "5438665",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "121",
+ "temp_id": "5438666",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "5",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "122",
+ "temp_id": "5438667",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4346188.0000"
+ },
+ {
+ "id": "123",
+ "temp_id": "5438668",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4440585.0000"
+ },
+ {
+ "id": "124",
+ "temp_id": "5438669",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4589895.0000"
+ },
+ {
+ "id": "125",
+ "temp_id": "5438670",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4681265.0000"
+ },
+ {
+ "id": "126",
+ "temp_id": "5438671",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "127",
+ "temp_id": "5438672",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4829589.0000"
+ },
+ {
+ "id": "128",
+ "temp_id": "5438673",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "129",
+ "temp_id": "5438674",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "130",
+ "temp_id": "5438675",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "131",
+ "temp_id": "5438676",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4827616.0000"
+ },
+ {
+ "id": "132",
+ "temp_id": "5438677",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4800000.0000"
+ },
+ {
+ "id": "133",
+ "temp_id": "5438678",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4800000.0000"
+ },
+ {
+ "id": "134",
+ "temp_id": "5438679",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4829589.0000"
+ },
+ {
+ "id": "135",
+ "temp_id": "5438680",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4800000.0000"
+ },
+ {
+ "id": "136",
+ "temp_id": "5438681",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4829589.0000"
+ },
+ {
+ "id": "137",
+ "temp_id": "5438682",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "138",
+ "temp_id": "5438683",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4830575.0000"
+ },
+ {
+ "id": "139",
+ "temp_id": "5438684",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "140",
+ "temp_id": "5438685",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "141",
+ "temp_id": "5438686",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "142",
+ "temp_id": "5438687",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "143",
+ "temp_id": "5438688",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "144",
+ "temp_id": "5438689",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "145",
+ "temp_id": "5438690",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "6",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "146",
+ "temp_id": "5438691",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "147",
+ "temp_id": "5438692",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "148",
+ "temp_id": "5438693",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "149",
+ "temp_id": "5438694",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "150",
+ "temp_id": "5438695",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "151",
+ "temp_id": "5438696",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "6997500.0000"
+ },
+ {
+ "id": "152",
+ "temp_id": "5438697",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "153",
+ "temp_id": "5438698",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "154",
+ "temp_id": "5438699",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "155",
+ "temp_id": "5438700",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "156",
+ "temp_id": "5438701",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "157",
+ "temp_id": "5438702",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "158",
+ "temp_id": "5438703",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "159",
+ "temp_id": "5438704",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "160",
+ "temp_id": "5438705",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "161",
+ "temp_id": "5438706",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "162",
+ "temp_id": "5438707",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "163",
+ "temp_id": "5438708",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "164",
+ "temp_id": "5438709",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "165",
+ "temp_id": "5438710",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "166",
+ "temp_id": "5438711",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "167",
+ "temp_id": "5438712",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "168",
+ "temp_id": "5438713",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "169",
+ "temp_id": "5438714",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "7",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "170",
+ "temp_id": "5438715",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2655792.0000"
+ },
+ {
+ "id": "171",
+ "temp_id": "5438716",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2688442.0000"
+ },
+ {
+ "id": "172",
+ "temp_id": "5438717",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2752597.0000"
+ },
+ {
+ "id": "173",
+ "temp_id": "5438718",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2784094.0000"
+ },
+ {
+ "id": "174",
+ "temp_id": "5438719",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2784094.0000"
+ },
+ {
+ "id": "175",
+ "temp_id": "5438720",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2815389.0000"
+ },
+ {
+ "id": "176",
+ "temp_id": "5438721",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2847062.0000"
+ },
+ {
+ "id": "177",
+ "temp_id": "5438722",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "178",
+ "temp_id": "5438723",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2909247.0000"
+ },
+ {
+ "id": "179",
+ "temp_id": "5438724",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2939743.0000"
+ },
+ {
+ "id": "180",
+ "temp_id": "5438725",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3001954.0000"
+ },
+ {
+ "id": "181",
+ "temp_id": "5438726",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3031870.0000"
+ },
+ {
+ "id": "182",
+ "temp_id": "5438727",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3031870.0000"
+ },
+ {
+ "id": "183",
+ "temp_id": "5438728",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3062217.0000"
+ },
+ {
+ "id": "184",
+ "temp_id": "5438729",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "4 Days Pas",
+ "CFHistory24MonthsOSAmount": "3140810.0000"
+ },
+ {
+ "id": "185",
+ "temp_id": "5438730",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3121571.0000"
+ },
+ {
+ "id": "186",
+ "temp_id": "5438731",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3101731.0000"
+ },
+ {
+ "id": "187",
+ "temp_id": "5438732",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3082095.0000"
+ },
+ {
+ "id": "188",
+ "temp_id": "5438733",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3063017.0000"
+ },
+ {
+ "id": "189",
+ "temp_id": "5438734",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3042598.0000"
+ },
+ {
+ "id": "190",
+ "temp_id": "5438735",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3022605.0000"
+ },
+ {
+ "id": "191",
+ "temp_id": "5438736",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3049589.0000"
+ },
+ {
+ "id": "192",
+ "temp_id": "5438737",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3077819.0000"
+ },
+ {
+ "id": "193",
+ "temp_id": "5438738",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "8",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3104408.0000"
+ },
+ {
+ "id": "194",
+ "temp_id": "5438739",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "195",
+ "temp_id": "5438740",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "196",
+ "temp_id": "5438741",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "197",
+ "temp_id": "5438742",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "198",
+ "temp_id": "5438743",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "199",
+ "temp_id": "5438744",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "200",
+ "temp_id": "5438745",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "201",
+ "temp_id": "5438746",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "202",
+ "temp_id": "5438747",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "203",
+ "temp_id": "5438748",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "204",
+ "temp_id": "5438749",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "205",
+ "temp_id": "5438750",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "206",
+ "temp_id": "5438751",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "207",
+ "temp_id": "5438752",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "208",
+ "temp_id": "5438753",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "209",
+ "temp_id": "5438754",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "210",
+ "temp_id": "5438755",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "211",
+ "temp_id": "5438756",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "212",
+ "temp_id": "5438757",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "213",
+ "temp_id": "5438758",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "214",
+ "temp_id": "5438759",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "215",
+ "temp_id": "5438760",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "216",
+ "temp_id": "5438761",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "217",
+ "temp_id": "5438762",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "9",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "22779900.0000"
+ },
+ {
+ "id": "218",
+ "temp_id": "5438763",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1280616.0000"
+ },
+ {
+ "id": "219",
+ "temp_id": "5438764",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1296073.0000"
+ },
+ {
+ "id": "220",
+ "temp_id": "5438765",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1306340.0000"
+ },
+ {
+ "id": "221",
+ "temp_id": "5438766",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1321284.0000"
+ },
+ {
+ "id": "222",
+ "temp_id": "5438767",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1341349.0000"
+ },
+ {
+ "id": "223",
+ "temp_id": "5438768",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1356161.0000"
+ },
+ {
+ "id": "224",
+ "temp_id": "5438769",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1371156.0000"
+ },
+ {
+ "id": "225",
+ "temp_id": "5438770",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "226",
+ "temp_id": "5438771",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1400593.0000"
+ },
+ {
+ "id": "227",
+ "temp_id": "5438772",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1415028.0000"
+ },
+ {
+ "id": "228",
+ "temp_id": "5438773",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1424676.0000"
+ },
+ {
+ "id": "229",
+ "temp_id": "5438774",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1458647.0000"
+ },
+ {
+ "id": "230",
+ "temp_id": "5438775",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1458647.0000"
+ },
+ {
+ "id": "231",
+ "temp_id": "5438776",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1473014.0000"
+ },
+ {
+ "id": "232",
+ "temp_id": "5438777",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "17 Days Pa",
+ "CFHistory24MonthsOSAmount": "1510300.0000"
+ },
+ {
+ "id": "233",
+ "temp_id": "5438778",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1501048.0000"
+ },
+ {
+ "id": "234",
+ "temp_id": "5438779",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1491548.0000"
+ },
+ {
+ "id": "235",
+ "temp_id": "5438780",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1482106.0000"
+ },
+ {
+ "id": "236",
+ "temp_id": "5438781",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1472930.0000"
+ },
+ {
+ "id": "237",
+ "temp_id": "5438782",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1463113.0000"
+ },
+ {
+ "id": "238",
+ "temp_id": "5438783",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1453498.0000"
+ },
+ {
+ "id": "239",
+ "temp_id": "5438784",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1466696.0000"
+ },
+ {
+ "id": "240",
+ "temp_id": "5438785",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1480487.0000"
+ },
+ {
+ "id": "241",
+ "temp_id": "5438786",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "10",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1493491.0000"
+ },
+ {
+ "id": "242",
+ "temp_id": "5438787",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "38628334.0000"
+ },
+ {
+ "id": "243",
+ "temp_id": "5438788",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "34473669.0000"
+ },
+ {
+ "id": "244",
+ "temp_id": "5438789",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "27480798.0000"
+ },
+ {
+ "id": "245",
+ "temp_id": "5438790",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "23040412.0000"
+ },
+ {
+ "id": "246",
+ "temp_id": "5438791",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "27506230.0000"
+ },
+ {
+ "id": "247",
+ "temp_id": "5438792",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "248",
+ "temp_id": "5438793",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "25148586.0000"
+ },
+ {
+ "id": "249",
+ "temp_id": "5438794",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "250",
+ "temp_id": "5438795",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "17611957.0000"
+ },
+ {
+ "id": "251",
+ "temp_id": "5438796",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "15287911.0000"
+ },
+ {
+ "id": "252",
+ "temp_id": "5438797",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19561383.0000"
+ },
+ {
+ "id": "253",
+ "temp_id": "5438798",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "9031397.0000"
+ },
+ {
+ "id": "254",
+ "temp_id": "5438799",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "8803617.0000"
+ },
+ {
+ "id": "255",
+ "temp_id": "5438800",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "5840685.0000"
+ },
+ {
+ "id": "256",
+ "temp_id": "5438801",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "15634009.0000"
+ },
+ {
+ "id": "257",
+ "temp_id": "5438802",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "10146712.0000"
+ },
+ {
+ "id": "258",
+ "temp_id": "5438803",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "20321984.0000"
+ },
+ {
+ "id": "259",
+ "temp_id": "5438804",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "20066642.0000"
+ },
+ {
+ "id": "260",
+ "temp_id": "5438805",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19986312.0000"
+ },
+ {
+ "id": "261",
+ "temp_id": "5438806",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "20331733.0000"
+ },
+ {
+ "id": "262",
+ "temp_id": "5438807",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19978669.0000"
+ },
+ {
+ "id": "263",
+ "temp_id": "5438808",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "20849702.0000"
+ },
+ {
+ "id": "264",
+ "temp_id": "5438809",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "20148879.0000"
+ },
+ {
+ "id": "265",
+ "temp_id": "5438810",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "11",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19801051.0000"
+ },
+ {
+ "id": "266",
+ "temp_id": "5438811",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3520500.0000"
+ },
+ {
+ "id": "267",
+ "temp_id": "5438812",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3627759.0000"
+ },
+ {
+ "id": "268",
+ "temp_id": "5438813",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3627759.0000"
+ },
+ {
+ "id": "269",
+ "temp_id": "5438814",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3730493.0000"
+ },
+ {
+ "id": "270",
+ "temp_id": "5438815",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3730493.0000"
+ },
+ {
+ "id": "271",
+ "temp_id": "5438816",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3780583.0000"
+ },
+ {
+ "id": "272",
+ "temp_id": "5438817",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3831348.0000"
+ },
+ {
+ "id": "273",
+ "temp_id": "5438818",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "274",
+ "temp_id": "5438819",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3930366.0000"
+ },
+ {
+ "id": "275",
+ "temp_id": "5438820",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3978579.0000"
+ },
+ {
+ "id": "276",
+ "temp_id": "5438821",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4077263.0000"
+ },
+ {
+ "id": "277",
+ "temp_id": "5438822",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4077263.0000"
+ },
+ {
+ "id": "278",
+ "temp_id": "5438823",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4124127.0000"
+ },
+ {
+ "id": "279",
+ "temp_id": "5438824",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4171801.0000"
+ },
+ {
+ "id": "280",
+ "temp_id": "5438825",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "4 Days Pas",
+ "CFHistory24MonthsOSAmount": "4305842.0000"
+ },
+ {
+ "id": "281",
+ "temp_id": "5438826",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4264140.0000"
+ },
+ {
+ "id": "282",
+ "temp_id": "5438827",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4220941.0000"
+ },
+ {
+ "id": "283",
+ "temp_id": "5438828",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4178169.0000"
+ },
+ {
+ "id": "284",
+ "temp_id": "5438829",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4137139.0000"
+ },
+ {
+ "id": "285",
+ "temp_id": "5438830",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4095216.0000"
+ },
+ {
+ "id": "286",
+ "temp_id": "5438831",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4054881.0000"
+ },
+ {
+ "id": "287",
+ "temp_id": "5438832",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4106522.0000"
+ },
+ {
+ "id": "288",
+ "temp_id": "5438833",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4160320.0000"
+ },
+ {
+ "id": "289",
+ "temp_id": "5438834",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "12",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4210891.0000"
+ },
+ {
+ "id": "290",
+ "temp_id": "5438835",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4401808.0000"
+ },
+ {
+ "id": "291",
+ "temp_id": "5438836",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "4402712.0000"
+ },
+ {
+ "id": "292",
+ "temp_id": "5438837",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "293",
+ "temp_id": "5438838",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "294",
+ "temp_id": "5438839",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "295",
+ "temp_id": "5438840",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "296",
+ "temp_id": "5438841",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "297",
+ "temp_id": "5438842",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "298",
+ "temp_id": "5438843",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "299",
+ "temp_id": "5438844",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "300",
+ "temp_id": "5438845",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "301",
+ "temp_id": "5438846",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "302",
+ "temp_id": "5438847",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "303",
+ "temp_id": "5438848",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "304",
+ "temp_id": "5438849",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "305",
+ "temp_id": "5438850",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "306",
+ "temp_id": "5438851",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "307",
+ "temp_id": "5438852",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "308",
+ "temp_id": "5438853",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "309",
+ "temp_id": "5438854",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "310",
+ "temp_id": "5438855",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "311",
+ "temp_id": "5438856",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "312",
+ "temp_id": "5438857",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "313",
+ "temp_id": "5438858",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "13",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "314",
+ "temp_id": "5438859",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "315",
+ "temp_id": "5438860",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "316",
+ "temp_id": "5438861",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "317",
+ "temp_id": "5438862",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "318",
+ "temp_id": "5438863",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "319",
+ "temp_id": "5438864",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "320",
+ "temp_id": "5438865",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "11320920.0000"
+ },
+ {
+ "id": "321",
+ "temp_id": "5438866",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "322",
+ "temp_id": "5438867",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "323",
+ "temp_id": "5438868",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "324",
+ "temp_id": "5438869",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "325",
+ "temp_id": "5438870",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "326",
+ "temp_id": "5438871",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "327",
+ "temp_id": "5438872",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "328",
+ "temp_id": "5438873",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "329",
+ "temp_id": "5438874",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "330",
+ "temp_id": "5438875",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "331",
+ "temp_id": "5438876",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "332",
+ "temp_id": "5438877",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "333",
+ "temp_id": "5438878",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "334",
+ "temp_id": "5438879",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "335",
+ "temp_id": "5438880",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "336",
+ "temp_id": "5438881",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "337",
+ "temp_id": "5438882",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "14",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "338",
+ "temp_id": "5438883",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "894479.0000"
+ },
+ {
+ "id": "339",
+ "temp_id": "5438884",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1000001.0000"
+ },
+ {
+ "id": "340",
+ "temp_id": "5438885",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1118098.0000"
+ },
+ {
+ "id": "341",
+ "temp_id": "5438886",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1222223.0000"
+ },
+ {
+ "id": "342",
+ "temp_id": "5438887",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1341997.0000"
+ },
+ {
+ "id": "343",
+ "temp_id": "5438888",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1453527.0000"
+ },
+ {
+ "id": "344",
+ "temp_id": "5438889",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1565663.0000"
+ },
+ {
+ "id": "345",
+ "temp_id": "5438890",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "346",
+ "temp_id": "5438891",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1789329.0000"
+ },
+ {
+ "id": "347",
+ "temp_id": "5438892",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1899974.0000"
+ },
+ {
+ "id": "348",
+ "temp_id": "5438893",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "349",
+ "temp_id": "5438894",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "350",
+ "temp_id": "5438895",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2012575.0000"
+ },
+ {
+ "id": "351",
+ "temp_id": "5438896",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "352",
+ "temp_id": "5438897",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2012575.0000"
+ },
+ {
+ "id": "353",
+ "temp_id": "5438898",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2012995.0000"
+ },
+ {
+ "id": "354",
+ "temp_id": "5438899",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2012995.0000"
+ },
+ {
+ "id": "355",
+ "temp_id": "5438900",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "356",
+ "temp_id": "5438901",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "357",
+ "temp_id": "5438902",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "358",
+ "temp_id": "5438903",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "359",
+ "temp_id": "5438904",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "360",
+ "temp_id": "5438905",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "361",
+ "temp_id": "5438906",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "15",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "362",
+ "temp_id": "5438907",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "363",
+ "temp_id": "5438908",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "364",
+ "temp_id": "5438909",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "365",
+ "temp_id": "5438910",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "366",
+ "temp_id": "5438911",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "12284995.0000"
+ },
+ {
+ "id": "367",
+ "temp_id": "5438912",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "368",
+ "temp_id": "5438913",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "369",
+ "temp_id": "5438914",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "370",
+ "temp_id": "5438915",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "371",
+ "temp_id": "5438916",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "372",
+ "temp_id": "5438917",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "373",
+ "temp_id": "5438918",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "374",
+ "temp_id": "5438919",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "375",
+ "temp_id": "5438920",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "376",
+ "temp_id": "5438921",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "377",
+ "temp_id": "5438922",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "378",
+ "temp_id": "5438923",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "379",
+ "temp_id": "5438924",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "380",
+ "temp_id": "5438925",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "381",
+ "temp_id": "5438926",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "382",
+ "temp_id": "5438927",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "383",
+ "temp_id": "5438928",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "384",
+ "temp_id": "5438929",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "385",
+ "temp_id": "5438930",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "16",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "386",
+ "temp_id": "5438931",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "387",
+ "temp_id": "5438932",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "388",
+ "temp_id": "5438933",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "389",
+ "temp_id": "5438934",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "390",
+ "temp_id": "5438935",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "391",
+ "temp_id": "5438936",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "392",
+ "temp_id": "5438937",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "393",
+ "temp_id": "5438938",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "394",
+ "temp_id": "5438939",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "395",
+ "temp_id": "5438940",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "396",
+ "temp_id": "5438941",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "397",
+ "temp_id": "5438942",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "398",
+ "temp_id": "5438943",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "399",
+ "temp_id": "5438944",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "400",
+ "temp_id": "5438945",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "401",
+ "temp_id": "5438946",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "402",
+ "temp_id": "5438947",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "403",
+ "temp_id": "5438948",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "404",
+ "temp_id": "5438949",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "405",
+ "temp_id": "5438950",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "406",
+ "temp_id": "5438951",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "407",
+ "temp_id": "5438952",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "408",
+ "temp_id": "5438953",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "409",
+ "temp_id": "5438954",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "17",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "410",
+ "temp_id": "5438955",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1368521.0000"
+ },
+ {
+ "id": "411",
+ "temp_id": "5438956",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1401761.0000"
+ },
+ {
+ "id": "412",
+ "temp_id": "5438957",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1435187.0000"
+ },
+ {
+ "id": "413",
+ "temp_id": "5438958",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1467479.0000"
+ },
+ {
+ "id": "414",
+ "temp_id": "5438959",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500000.0000"
+ },
+ {
+ "id": "415",
+ "temp_id": "5438960",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500000.0000"
+ },
+ {
+ "id": "416",
+ "temp_id": "5438961",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "417",
+ "temp_id": "5438962",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "418",
+ "temp_id": "5438963",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "419",
+ "temp_id": "5438964",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "420",
+ "temp_id": "5438965",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "421",
+ "temp_id": "5438966",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "422",
+ "temp_id": "5438967",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "423",
+ "temp_id": "5438968",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "424",
+ "temp_id": "5438969",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "425",
+ "temp_id": "5438970",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "426",
+ "temp_id": "5438971",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "427",
+ "temp_id": "5438972",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "428",
+ "temp_id": "5438973",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "429",
+ "temp_id": "5438974",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "430",
+ "temp_id": "5438975",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "431",
+ "temp_id": "5438976",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "432",
+ "temp_id": "5438977",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "433",
+ "temp_id": "5438978",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "18",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "434",
+ "temp_id": "5438979",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "435",
+ "temp_id": "5438980",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "436",
+ "temp_id": "5438981",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "437",
+ "temp_id": "5438982",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "438",
+ "temp_id": "5438983",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "439",
+ "temp_id": "5438984",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "440",
+ "temp_id": "5438985",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "441",
+ "temp_id": "5438986",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "442",
+ "temp_id": "5438987",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "443",
+ "temp_id": "5438988",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "444",
+ "temp_id": "5438989",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "445",
+ "temp_id": "5438990",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "446",
+ "temp_id": "5438991",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "447",
+ "temp_id": "5438992",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "448",
+ "temp_id": "5438993",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "449",
+ "temp_id": "5438994",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "450",
+ "temp_id": "5438995",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "451",
+ "temp_id": "5438996",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "452",
+ "temp_id": "5438997",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "453",
+ "temp_id": "5438998",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "454",
+ "temp_id": "5438999",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "455",
+ "temp_id": "5439000",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "456",
+ "temp_id": "5439001",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "457",
+ "temp_id": "5439002",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "19",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "458",
+ "temp_id": "5439003",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "459",
+ "temp_id": "5439004",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "460",
+ "temp_id": "5439005",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "461",
+ "temp_id": "5439006",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "462",
+ "temp_id": "5439007",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "463",
+ "temp_id": "5439008",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "464",
+ "temp_id": "5439009",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "465",
+ "temp_id": "5439010",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "466",
+ "temp_id": "5439011",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "467",
+ "temp_id": "5439012",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "468",
+ "temp_id": "5439013",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "469",
+ "temp_id": "5439014",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "470",
+ "temp_id": "5439015",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "471",
+ "temp_id": "5439016",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "472",
+ "temp_id": "5439017",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "473",
+ "temp_id": "5439018",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "474",
+ "temp_id": "5439019",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "475",
+ "temp_id": "5439020",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "476",
+ "temp_id": "5439021",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "477",
+ "temp_id": "5439022",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "478",
+ "temp_id": "5439023",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "7 Days Pas",
+ "CFHistory24MonthsOSAmount": "2776705.0000"
+ },
+ {
+ "id": "479",
+ "temp_id": "5439024",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1315.0000"
+ },
+ {
+ "id": "480",
+ "temp_id": "5439025",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "1 Day Past",
+ "CFHistory24MonthsOSAmount": "677695.0000"
+ },
+ {
+ "id": "481",
+ "temp_id": "5439026",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "20",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "482",
+ "temp_id": "5439027",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "483",
+ "temp_id": "5439028",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "484",
+ "temp_id": "5439029",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "485",
+ "temp_id": "5439030",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "486",
+ "temp_id": "5439031",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "487",
+ "temp_id": "5439032",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "488",
+ "temp_id": "5439033",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "489",
+ "temp_id": "5439034",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "490",
+ "temp_id": "5439035",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "491",
+ "temp_id": "5439036",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "492",
+ "temp_id": "5439037",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "493",
+ "temp_id": "5439038",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "494",
+ "temp_id": "5439039",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "495",
+ "temp_id": "5439040",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "496",
+ "temp_id": "5439041",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "497",
+ "temp_id": "5439042",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "498",
+ "temp_id": "5439043",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "499",
+ "temp_id": "5439044",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "500",
+ "temp_id": "5439045",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "501",
+ "temp_id": "5439046",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "502",
+ "temp_id": "5439047",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "503",
+ "temp_id": "5439048",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "504",
+ "temp_id": "5439049",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "505",
+ "temp_id": "5439050",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "21",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "506",
+ "temp_id": "5439051",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "507",
+ "temp_id": "5439052",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "508",
+ "temp_id": "5439053",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "509",
+ "temp_id": "5439054",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "510",
+ "temp_id": "5439055",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "511",
+ "temp_id": "5439056",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "512",
+ "temp_id": "5439057",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "513",
+ "temp_id": "5439058",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "514",
+ "temp_id": "5439059",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "515",
+ "temp_id": "5439060",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "516",
+ "temp_id": "5439061",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "517",
+ "temp_id": "5439062",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "518",
+ "temp_id": "5439063",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "519",
+ "temp_id": "5439064",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "520",
+ "temp_id": "5439065",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "521",
+ "temp_id": "5439066",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "522",
+ "temp_id": "5439067",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "523",
+ "temp_id": "5439068",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "524",
+ "temp_id": "5439069",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "525",
+ "temp_id": "5439070",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "526",
+ "temp_id": "5439071",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "527",
+ "temp_id": "5439072",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "528",
+ "temp_id": "5439073",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "529",
+ "temp_id": "5439074",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "22",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "530",
+ "temp_id": "5439075",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "531",
+ "temp_id": "5439076",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "532",
+ "temp_id": "5439077",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "533",
+ "temp_id": "5439078",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "534",
+ "temp_id": "5439079",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "535",
+ "temp_id": "5439080",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "536",
+ "temp_id": "5439081",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "537",
+ "temp_id": "5439082",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "538",
+ "temp_id": "5439083",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "539",
+ "temp_id": "5439084",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "540",
+ "temp_id": "5439085",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "541",
+ "temp_id": "5439086",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "542",
+ "temp_id": "5439087",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "543",
+ "temp_id": "5439088",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "544",
+ "temp_id": "5439089",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "545",
+ "temp_id": "5439090",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "546",
+ "temp_id": "5439091",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "547",
+ "temp_id": "5439092",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "548",
+ "temp_id": "5439093",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "549",
+ "temp_id": "5439094",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "550",
+ "temp_id": "5439095",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "551",
+ "temp_id": "5439096",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "552",
+ "temp_id": "5439097",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "553",
+ "temp_id": "5439098",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "23",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "554",
+ "temp_id": "5439099",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "555",
+ "temp_id": "5439100",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "556",
+ "temp_id": "5439101",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "557",
+ "temp_id": "5439102",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "558",
+ "temp_id": "5439103",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "559",
+ "temp_id": "5439104",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "560",
+ "temp_id": "5439105",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "561",
+ "temp_id": "5439106",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "562",
+ "temp_id": "5439107",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "563",
+ "temp_id": "5439108",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "564",
+ "temp_id": "5439109",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "565",
+ "temp_id": "5439110",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "566",
+ "temp_id": "5439111",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "567",
+ "temp_id": "5439112",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "568",
+ "temp_id": "5439113",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "569",
+ "temp_id": "5439114",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "570",
+ "temp_id": "5439115",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "571",
+ "temp_id": "5439116",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "572",
+ "temp_id": "5439117",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "573",
+ "temp_id": "5439118",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "574",
+ "temp_id": "5439119",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "575",
+ "temp_id": "5439120",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "576",
+ "temp_id": "5439121",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "577",
+ "temp_id": "5439122",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "24",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "578",
+ "temp_id": "5439123",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "579",
+ "temp_id": "5439124",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "580",
+ "temp_id": "5439125",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "581",
+ "temp_id": "5439126",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "582",
+ "temp_id": "5439127",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "583",
+ "temp_id": "5439128",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "584",
+ "temp_id": "5439129",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "585",
+ "temp_id": "5439130",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "586",
+ "temp_id": "5439131",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "587",
+ "temp_id": "5439132",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "588",
+ "temp_id": "5439133",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "589",
+ "temp_id": "5439134",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "590",
+ "temp_id": "5439135",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "591",
+ "temp_id": "5439136",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "592",
+ "temp_id": "5439137",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "593",
+ "temp_id": "5439138",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "594",
+ "temp_id": "5439139",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "595",
+ "temp_id": "5439140",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "596",
+ "temp_id": "5439141",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "597",
+ "temp_id": "5439142",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "598",
+ "temp_id": "5439143",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "599",
+ "temp_id": "5439144",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "600",
+ "temp_id": "5439145",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "601",
+ "temp_id": "5439146",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "25",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "602",
+ "temp_id": "5439147",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "603",
+ "temp_id": "5439148",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "604",
+ "temp_id": "5439149",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "605",
+ "temp_id": "5439150",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "606",
+ "temp_id": "5439151",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "607",
+ "temp_id": "5439152",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "608",
+ "temp_id": "5439153",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "609",
+ "temp_id": "5439154",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "610",
+ "temp_id": "5439155",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "611",
+ "temp_id": "5439156",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "612",
+ "temp_id": "5439157",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "613",
+ "temp_id": "5439158",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "614",
+ "temp_id": "5439159",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "615",
+ "temp_id": "5439160",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "616",
+ "temp_id": "5439161",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "617",
+ "temp_id": "5439162",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "618",
+ "temp_id": "5439163",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "619",
+ "temp_id": "5439164",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "620",
+ "temp_id": "5439165",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "621",
+ "temp_id": "5439166",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "622",
+ "temp_id": "5439167",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "623",
+ "temp_id": "5439168",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "624",
+ "temp_id": "5439169",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "625",
+ "temp_id": "5439170",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "26",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "626",
+ "temp_id": "5439171",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "627",
+ "temp_id": "5439172",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "628",
+ "temp_id": "5439173",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "629",
+ "temp_id": "5439174",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "630",
+ "temp_id": "5439175",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "631",
+ "temp_id": "5439176",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "632",
+ "temp_id": "5439177",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "633",
+ "temp_id": "5439178",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "634",
+ "temp_id": "5439179",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "635",
+ "temp_id": "5439180",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "636",
+ "temp_id": "5439181",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "637",
+ "temp_id": "5439182",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "638",
+ "temp_id": "5439183",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "639",
+ "temp_id": "5439184",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "640",
+ "temp_id": "5439185",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "641",
+ "temp_id": "5439186",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "642",
+ "temp_id": "5439187",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "643",
+ "temp_id": "5439188",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "644",
+ "temp_id": "5439189",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "645",
+ "temp_id": "5439190",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "646",
+ "temp_id": "5439191",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "647",
+ "temp_id": "5439192",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "648",
+ "temp_id": "5439193",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "649",
+ "temp_id": "5439194",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "27",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "650",
+ "temp_id": "5439195",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "651",
+ "temp_id": "5439196",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "652",
+ "temp_id": "5439197",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "653",
+ "temp_id": "5439198",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "654",
+ "temp_id": "5439199",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "655",
+ "temp_id": "5439200",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "656",
+ "temp_id": "5439201",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "657",
+ "temp_id": "5439202",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "658",
+ "temp_id": "5439203",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "659",
+ "temp_id": "5439204",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "660",
+ "temp_id": "5439205",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "661",
+ "temp_id": "5439206",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "662",
+ "temp_id": "5439207",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "663",
+ "temp_id": "5439208",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "664",
+ "temp_id": "5439209",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "665",
+ "temp_id": "5439210",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "666",
+ "temp_id": "5439211",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "667",
+ "temp_id": "5439212",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "668",
+ "temp_id": "5439213",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "669",
+ "temp_id": "5439214",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "670",
+ "temp_id": "5439215",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "671",
+ "temp_id": "5439216",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "672",
+ "temp_id": "5439217",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "673",
+ "temp_id": "5439218",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "28",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "674",
+ "temp_id": "5439219",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "675",
+ "temp_id": "5439220",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "676",
+ "temp_id": "5439221",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "677",
+ "temp_id": "5439222",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "678",
+ "temp_id": "5439223",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "679",
+ "temp_id": "5439224",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "680",
+ "temp_id": "5439225",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "681",
+ "temp_id": "5439226",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "682",
+ "temp_id": "5439227",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "683",
+ "temp_id": "5439228",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "684",
+ "temp_id": "5439229",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "685",
+ "temp_id": "5439230",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "686",
+ "temp_id": "5439231",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "687",
+ "temp_id": "5439232",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "688",
+ "temp_id": "5439233",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "689",
+ "temp_id": "5439234",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "690",
+ "temp_id": "5439235",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "691",
+ "temp_id": "5439236",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "692",
+ "temp_id": "5439237",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "693",
+ "temp_id": "5439238",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "694",
+ "temp_id": "5439239",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "695",
+ "temp_id": "5439240",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "696",
+ "temp_id": "5439241",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "697",
+ "temp_id": "5439242",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "29",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "698",
+ "temp_id": "5439243",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "699",
+ "temp_id": "5439244",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "700",
+ "temp_id": "5439245",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "701",
+ "temp_id": "5439246",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "702",
+ "temp_id": "5439247",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "703",
+ "temp_id": "5439248",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "704",
+ "temp_id": "5439249",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "705",
+ "temp_id": "5439250",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "706",
+ "temp_id": "5439251",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "707",
+ "temp_id": "5439252",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "708",
+ "temp_id": "5439253",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "709",
+ "temp_id": "5439254",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "710",
+ "temp_id": "5439255",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "711",
+ "temp_id": "5439256",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "712",
+ "temp_id": "5439257",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "713",
+ "temp_id": "5439258",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "714",
+ "temp_id": "5439259",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "715",
+ "temp_id": "5439260",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "716",
+ "temp_id": "5439261",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "717",
+ "temp_id": "5439262",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "718",
+ "temp_id": "5439263",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "719",
+ "temp_id": "5439264",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "720",
+ "temp_id": "5439265",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "721",
+ "temp_id": "5439266",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "30",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "722",
+ "temp_id": "5439267",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "723",
+ "temp_id": "5439268",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "724",
+ "temp_id": "5439269",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "725",
+ "temp_id": "5439270",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "726",
+ "temp_id": "5439271",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "727",
+ "temp_id": "5439272",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "728",
+ "temp_id": "5439273",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "729",
+ "temp_id": "5439274",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "730",
+ "temp_id": "5439275",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "731",
+ "temp_id": "5439276",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "732",
+ "temp_id": "5439277",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "733",
+ "temp_id": "5439278",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "734",
+ "temp_id": "5439279",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "735",
+ "temp_id": "5439280",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "736",
+ "temp_id": "5439281",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "737",
+ "temp_id": "5439282",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "738",
+ "temp_id": "5439283",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "739",
+ "temp_id": "5439284",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "740",
+ "temp_id": "5439285",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "741",
+ "temp_id": "5439286",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "742",
+ "temp_id": "5439287",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "743",
+ "temp_id": "5439288",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "744",
+ "temp_id": "5439289",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "745",
+ "temp_id": "5439290",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "31",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "746",
+ "temp_id": "5439291",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "747",
+ "temp_id": "5439292",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "748",
+ "temp_id": "5439293",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "749",
+ "temp_id": "5439294",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "750",
+ "temp_id": "5439295",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "751",
+ "temp_id": "5439296",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "752",
+ "temp_id": "5439297",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "753",
+ "temp_id": "5439298",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "754",
+ "temp_id": "5439299",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "755",
+ "temp_id": "5439300",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "756",
+ "temp_id": "5439301",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "757",
+ "temp_id": "5439302",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "758",
+ "temp_id": "5439303",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "759",
+ "temp_id": "5439304",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "760",
+ "temp_id": "5439305",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "761",
+ "temp_id": "5439306",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "762",
+ "temp_id": "5439307",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "763",
+ "temp_id": "5439308",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "764",
+ "temp_id": "5439309",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "765",
+ "temp_id": "5439310",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "766",
+ "temp_id": "5439311",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "767",
+ "temp_id": "5439312",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "768",
+ "temp_id": "5439313",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "769",
+ "temp_id": "5439314",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "32",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "770",
+ "temp_id": "5439315",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "771",
+ "temp_id": "5439316",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "772",
+ "temp_id": "5439317",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "773",
+ "temp_id": "5439318",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "774",
+ "temp_id": "5439319",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "775",
+ "temp_id": "5439320",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "776",
+ "temp_id": "5439321",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "777",
+ "temp_id": "5439322",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "778",
+ "temp_id": "5439323",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "779",
+ "temp_id": "5439324",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "780",
+ "temp_id": "5439325",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "781",
+ "temp_id": "5439326",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "782",
+ "temp_id": "5439327",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "783",
+ "temp_id": "5439328",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "784",
+ "temp_id": "5439329",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "785",
+ "temp_id": "5439330",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "786",
+ "temp_id": "5439331",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "787",
+ "temp_id": "5439332",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "788",
+ "temp_id": "5439333",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "789",
+ "temp_id": "5439334",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "790",
+ "temp_id": "5439335",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "791",
+ "temp_id": "5439336",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "792",
+ "temp_id": "5439337",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "793",
+ "temp_id": "5439338",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "33",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "794",
+ "temp_id": "5439339",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "795",
+ "temp_id": "5439340",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "796",
+ "temp_id": "5439341",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "797",
+ "temp_id": "5439342",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "798",
+ "temp_id": "5439343",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "799",
+ "temp_id": "5439344",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "800",
+ "temp_id": "5439345",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "801",
+ "temp_id": "5439346",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "802",
+ "temp_id": "5439347",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "803",
+ "temp_id": "5439348",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "804",
+ "temp_id": "5439349",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "805",
+ "temp_id": "5439350",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "806",
+ "temp_id": "5439351",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "807",
+ "temp_id": "5439352",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "808",
+ "temp_id": "5439353",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "809",
+ "temp_id": "5439354",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "810",
+ "temp_id": "5439355",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "811",
+ "temp_id": "5439356",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "812",
+ "temp_id": "5439357",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "813",
+ "temp_id": "5439358",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "814",
+ "temp_id": "5439359",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "815",
+ "temp_id": "5439360",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "816",
+ "temp_id": "5439361",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "817",
+ "temp_id": "5439362",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "34",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "818",
+ "temp_id": "5439363",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "819",
+ "temp_id": "5439364",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "820",
+ "temp_id": "5439365",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "821",
+ "temp_id": "5439366",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "822",
+ "temp_id": "5439367",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "823",
+ "temp_id": "5439368",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "824",
+ "temp_id": "5439369",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "825",
+ "temp_id": "5439370",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "826",
+ "temp_id": "5439371",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "827",
+ "temp_id": "5439372",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "828",
+ "temp_id": "5439373",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "829",
+ "temp_id": "5439374",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "830",
+ "temp_id": "5439375",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "831",
+ "temp_id": "5439376",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "832",
+ "temp_id": "5439377",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "833",
+ "temp_id": "5439378",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "834",
+ "temp_id": "5439379",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "835",
+ "temp_id": "5439380",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "836",
+ "temp_id": "5439381",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "837",
+ "temp_id": "5439382",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "838",
+ "temp_id": "5439383",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "839",
+ "temp_id": "5439384",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "840",
+ "temp_id": "5439385",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "841",
+ "temp_id": "5439386",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "35",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "842",
+ "temp_id": "5439387",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "843",
+ "temp_id": "5439388",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "844",
+ "temp_id": "5439389",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "845",
+ "temp_id": "5439390",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "846",
+ "temp_id": "5439391",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "847",
+ "temp_id": "5439392",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "848",
+ "temp_id": "5439393",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "849",
+ "temp_id": "5439394",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "850",
+ "temp_id": "5439395",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "851",
+ "temp_id": "5439396",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "852",
+ "temp_id": "5439397",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "853",
+ "temp_id": "5439398",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "854",
+ "temp_id": "5439399",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "855",
+ "temp_id": "5439400",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "856",
+ "temp_id": "5439401",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "857",
+ "temp_id": "5439402",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "858",
+ "temp_id": "5439403",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "859",
+ "temp_id": "5439404",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "860",
+ "temp_id": "5439405",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "861",
+ "temp_id": "5439406",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "862",
+ "temp_id": "5439407",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "863",
+ "temp_id": "5439408",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "864",
+ "temp_id": "5439409",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "865",
+ "temp_id": "5439410",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "36",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "866",
+ "temp_id": "5439411",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "867",
+ "temp_id": "5439412",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "868",
+ "temp_id": "5439413",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "869",
+ "temp_id": "5439414",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "870",
+ "temp_id": "5439415",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "871",
+ "temp_id": "5439416",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "872",
+ "temp_id": "5439417",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "873",
+ "temp_id": "5439418",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "874",
+ "temp_id": "5439419",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "875",
+ "temp_id": "5439420",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "876",
+ "temp_id": "5439421",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "877",
+ "temp_id": "5439422",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "878",
+ "temp_id": "5439423",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "879",
+ "temp_id": "5439424",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "880",
+ "temp_id": "5439425",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "881",
+ "temp_id": "5439426",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "882",
+ "temp_id": "5439427",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "883",
+ "temp_id": "5439428",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "884",
+ "temp_id": "5439429",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "885",
+ "temp_id": "5439430",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "886",
+ "temp_id": "5439431",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "887",
+ "temp_id": "5439432",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "888",
+ "temp_id": "5439433",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "889",
+ "temp_id": "5439434",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "37",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "890",
+ "temp_id": "5439435",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "891",
+ "temp_id": "5439436",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "892",
+ "temp_id": "5439437",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "893",
+ "temp_id": "5439438",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "894",
+ "temp_id": "5439439",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "895",
+ "temp_id": "5439440",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "896",
+ "temp_id": "5439441",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "897",
+ "temp_id": "5439442",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "898",
+ "temp_id": "5439443",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "899",
+ "temp_id": "5439444",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "900",
+ "temp_id": "5439445",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "901",
+ "temp_id": "5439446",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "902",
+ "temp_id": "5439447",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "903",
+ "temp_id": "5439448",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "904",
+ "temp_id": "5439449",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "905",
+ "temp_id": "5439450",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "906",
+ "temp_id": "5439451",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "907",
+ "temp_id": "5439452",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "908",
+ "temp_id": "5439453",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "909",
+ "temp_id": "5439454",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "910",
+ "temp_id": "5439455",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "911",
+ "temp_id": "5439456",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "912",
+ "temp_id": "5439457",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "913",
+ "temp_id": "5439458",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "38",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "914",
+ "temp_id": "5439459",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3300000.0000"
+ },
+ {
+ "id": "915",
+ "temp_id": "5439460",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "916",
+ "temp_id": "5439461",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "917",
+ "temp_id": "5439462",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "918",
+ "temp_id": "5439463",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "919",
+ "temp_id": "5439464",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "920",
+ "temp_id": "5439465",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "921",
+ "temp_id": "5439466",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "922",
+ "temp_id": "5439467",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "923",
+ "temp_id": "5439468",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "924",
+ "temp_id": "5439469",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "925",
+ "temp_id": "5439470",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "926",
+ "temp_id": "5439471",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "927",
+ "temp_id": "5439472",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "928",
+ "temp_id": "5439473",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "929",
+ "temp_id": "5439474",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "930",
+ "temp_id": "5439475",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "931",
+ "temp_id": "5439476",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "932",
+ "temp_id": "5439477",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "933",
+ "temp_id": "5439478",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "934",
+ "temp_id": "5439479",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "935",
+ "temp_id": "5439480",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "936",
+ "temp_id": "5439481",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "937",
+ "temp_id": "5439482",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "39",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "938",
+ "temp_id": "5439483",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "939",
+ "temp_id": "5439484",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "940",
+ "temp_id": "5439485",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "941",
+ "temp_id": "5439486",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "942",
+ "temp_id": "5439487",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "943",
+ "temp_id": "5439488",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "944",
+ "temp_id": "5439489",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "945",
+ "temp_id": "5439490",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "946",
+ "temp_id": "5439491",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "947",
+ "temp_id": "5439492",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "948",
+ "temp_id": "5439493",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "949",
+ "temp_id": "5439494",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "950",
+ "temp_id": "5439495",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "951",
+ "temp_id": "5439496",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "952",
+ "temp_id": "5439497",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "953",
+ "temp_id": "5439498",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "954",
+ "temp_id": "5439499",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "955",
+ "temp_id": "5439500",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "956",
+ "temp_id": "5439501",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "957",
+ "temp_id": "5439502",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "958",
+ "temp_id": "5439503",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "959",
+ "temp_id": "5439504",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "960",
+ "temp_id": "5439505",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "961",
+ "temp_id": "5439506",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "40",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "962",
+ "temp_id": "5439507",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "963",
+ "temp_id": "5439508",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "964",
+ "temp_id": "5439509",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "965",
+ "temp_id": "5439510",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "966",
+ "temp_id": "5439511",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "967",
+ "temp_id": "5439512",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "968",
+ "temp_id": "5439513",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "969",
+ "temp_id": "5439514",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "970",
+ "temp_id": "5439515",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "971",
+ "temp_id": "5439516",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "972",
+ "temp_id": "5439517",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "973",
+ "temp_id": "5439518",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "974",
+ "temp_id": "5439519",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "975",
+ "temp_id": "5439520",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "976",
+ "temp_id": "5439521",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "977",
+ "temp_id": "5439522",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "978",
+ "temp_id": "5439523",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "979",
+ "temp_id": "5439524",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "980",
+ "temp_id": "5439525",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "981",
+ "temp_id": "5439526",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "982",
+ "temp_id": "5439527",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "983",
+ "temp_id": "5439528",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "984",
+ "temp_id": "5439529",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "985",
+ "temp_id": "5439530",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "41",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "986",
+ "temp_id": "5439531",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "987",
+ "temp_id": "5439532",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "988",
+ "temp_id": "5439533",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "989",
+ "temp_id": "5439534",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "990",
+ "temp_id": "5439535",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "991",
+ "temp_id": "5439536",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "992",
+ "temp_id": "5439537",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "993",
+ "temp_id": "5439538",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "994",
+ "temp_id": "5439539",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "995",
+ "temp_id": "5439540",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "996",
+ "temp_id": "5439541",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "997",
+ "temp_id": "5439542",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "998",
+ "temp_id": "5439543",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "999",
+ "temp_id": "5439544",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1000",
+ "temp_id": "5439545",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1001",
+ "temp_id": "5439546",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1002",
+ "temp_id": "5439547",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1003",
+ "temp_id": "5439548",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1004",
+ "temp_id": "5439549",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1005",
+ "temp_id": "5439550",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1006",
+ "temp_id": "5439551",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1007",
+ "temp_id": "5439552",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1008",
+ "temp_id": "5439553",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1009",
+ "temp_id": "5439554",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "42",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1010",
+ "temp_id": "5439555",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1011",
+ "temp_id": "5439556",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1012",
+ "temp_id": "5439557",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1013",
+ "temp_id": "5439558",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1014",
+ "temp_id": "5439559",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1015",
+ "temp_id": "5439560",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1016",
+ "temp_id": "5439561",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1017",
+ "temp_id": "5439562",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1018",
+ "temp_id": "5439563",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1019",
+ "temp_id": "5439564",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1020",
+ "temp_id": "5439565",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1021",
+ "temp_id": "5439566",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1022",
+ "temp_id": "5439567",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1023",
+ "temp_id": "5439568",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1024",
+ "temp_id": "5439569",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1025",
+ "temp_id": "5439570",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1026",
+ "temp_id": "5439571",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1027",
+ "temp_id": "5439572",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1028",
+ "temp_id": "5439573",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1029",
+ "temp_id": "5439574",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1030",
+ "temp_id": "5439575",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1031",
+ "temp_id": "5439576",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1032",
+ "temp_id": "5439577",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1033",
+ "temp_id": "5439578",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "43",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1034",
+ "temp_id": "5439579",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1035",
+ "temp_id": "5439580",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1036",
+ "temp_id": "5439581",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1037",
+ "temp_id": "5439582",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1038",
+ "temp_id": "5439583",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1039",
+ "temp_id": "5439584",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1040",
+ "temp_id": "5439585",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1041",
+ "temp_id": "5439586",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1042",
+ "temp_id": "5439587",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1043",
+ "temp_id": "5439588",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1044",
+ "temp_id": "5439589",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1045",
+ "temp_id": "5439590",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1046",
+ "temp_id": "5439591",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1047",
+ "temp_id": "5439592",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1048",
+ "temp_id": "5439593",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1049",
+ "temp_id": "5439594",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1050",
+ "temp_id": "5439595",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1051",
+ "temp_id": "5439596",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1052",
+ "temp_id": "5439597",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1053",
+ "temp_id": "5439598",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1054",
+ "temp_id": "5439599",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1055",
+ "temp_id": "5439600",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1056",
+ "temp_id": "5439601",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1057",
+ "temp_id": "5439602",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "44",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1058",
+ "temp_id": "5439603",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1059",
+ "temp_id": "5439604",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1060",
+ "temp_id": "5439605",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1061",
+ "temp_id": "5439606",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1062",
+ "temp_id": "5439607",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1063",
+ "temp_id": "5439608",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1064",
+ "temp_id": "5439609",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1065",
+ "temp_id": "5439610",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1066",
+ "temp_id": "5439611",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1067",
+ "temp_id": "5439612",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1068",
+ "temp_id": "5439613",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1069",
+ "temp_id": "5439614",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1070",
+ "temp_id": "5439615",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1071",
+ "temp_id": "5439616",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1072",
+ "temp_id": "5439617",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1073",
+ "temp_id": "5439618",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1074",
+ "temp_id": "5439619",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1075",
+ "temp_id": "5439620",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1076",
+ "temp_id": "5439621",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1077",
+ "temp_id": "5439622",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1078",
+ "temp_id": "5439623",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1079",
+ "temp_id": "5439624",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1080",
+ "temp_id": "5439625",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1081",
+ "temp_id": "5439626",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "45",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1082",
+ "temp_id": "5439627",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1083",
+ "temp_id": "5439628",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1084",
+ "temp_id": "5439629",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1085",
+ "temp_id": "5439630",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1086",
+ "temp_id": "5439631",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1087",
+ "temp_id": "5439632",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1088",
+ "temp_id": "5439633",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1089",
+ "temp_id": "5439634",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1090",
+ "temp_id": "5439635",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1091",
+ "temp_id": "5439636",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1092",
+ "temp_id": "5439637",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1093",
+ "temp_id": "5439638",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1094",
+ "temp_id": "5439639",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1095",
+ "temp_id": "5439640",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1096",
+ "temp_id": "5439641",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1097",
+ "temp_id": "5439642",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1098",
+ "temp_id": "5439643",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1099",
+ "temp_id": "5439644",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1100",
+ "temp_id": "5439645",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1101",
+ "temp_id": "5439646",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1102",
+ "temp_id": "5439647",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1103",
+ "temp_id": "5439648",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1104",
+ "temp_id": "5439649",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1105",
+ "temp_id": "5439650",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "46",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1106",
+ "temp_id": "5439651",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1107",
+ "temp_id": "5439652",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1108",
+ "temp_id": "5439653",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1109",
+ "temp_id": "5439654",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1110",
+ "temp_id": "5439655",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1111",
+ "temp_id": "5439656",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1112",
+ "temp_id": "5439657",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1113",
+ "temp_id": "5439658",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1114",
+ "temp_id": "5439659",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1115",
+ "temp_id": "5439660",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1116",
+ "temp_id": "5439661",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1117",
+ "temp_id": "5439662",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1118",
+ "temp_id": "5439663",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1119",
+ "temp_id": "5439664",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1120",
+ "temp_id": "5439665",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1121",
+ "temp_id": "5439666",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1122",
+ "temp_id": "5439667",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1123",
+ "temp_id": "5439668",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1124",
+ "temp_id": "5439669",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1125",
+ "temp_id": "5439670",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1126",
+ "temp_id": "5439671",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1127",
+ "temp_id": "5439672",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1128",
+ "temp_id": "5439673",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1129",
+ "temp_id": "5439674",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "47",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1130",
+ "temp_id": "5439675",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1131",
+ "temp_id": "5439676",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1132",
+ "temp_id": "5439677",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1133",
+ "temp_id": "5439678",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1134",
+ "temp_id": "5439679",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1135",
+ "temp_id": "5439680",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1136",
+ "temp_id": "5439681",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1137",
+ "temp_id": "5439682",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1138",
+ "temp_id": "5439683",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1139",
+ "temp_id": "5439684",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1140",
+ "temp_id": "5439685",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1141",
+ "temp_id": "5439686",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1142",
+ "temp_id": "5439687",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1143",
+ "temp_id": "5439688",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1144",
+ "temp_id": "5439689",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1145",
+ "temp_id": "5439690",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1146",
+ "temp_id": "5439691",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1147",
+ "temp_id": "5439692",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1148",
+ "temp_id": "5439693",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1149",
+ "temp_id": "5439694",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1150",
+ "temp_id": "5439695",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1151",
+ "temp_id": "5439696",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1152",
+ "temp_id": "5439697",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1153",
+ "temp_id": "5439698",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "48",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1154",
+ "temp_id": "5439699",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2014-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1155",
+ "temp_id": "5439700",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2014-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1156",
+ "temp_id": "5439701",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2014-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1157",
+ "temp_id": "5439702",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2014-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1158",
+ "temp_id": "5439703",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1159",
+ "temp_id": "5439704",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1160",
+ "temp_id": "5439705",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1161",
+ "temp_id": "5439706",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1162",
+ "temp_id": "5439707",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1163",
+ "temp_id": "5439708",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1164",
+ "temp_id": "5439709",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1165",
+ "temp_id": "5439710",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1166",
+ "temp_id": "5439711",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1167",
+ "temp_id": "5439712",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1168",
+ "temp_id": "5439713",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1169",
+ "temp_id": "5439714",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1170",
+ "temp_id": "5439715",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1171",
+ "temp_id": "5439716",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1172",
+ "temp_id": "5439717",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1173",
+ "temp_id": "5439718",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1174",
+ "temp_id": "5439719",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1175",
+ "temp_id": "5439720",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1176",
+ "temp_id": "5439721",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1177",
+ "temp_id": "5439722",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "49",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1178",
+ "temp_id": "5439723",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1179",
+ "temp_id": "5439724",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1180",
+ "temp_id": "5439725",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1181",
+ "temp_id": "5439726",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1182",
+ "temp_id": "5439727",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1183",
+ "temp_id": "5439728",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1184",
+ "temp_id": "5439729",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1185",
+ "temp_id": "5439730",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1186",
+ "temp_id": "5439731",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1187",
+ "temp_id": "5439732",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1188",
+ "temp_id": "5439733",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1189",
+ "temp_id": "5439734",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1190",
+ "temp_id": "5439735",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1191",
+ "temp_id": "5439736",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1192",
+ "temp_id": "5439737",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1193",
+ "temp_id": "5439738",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1194",
+ "temp_id": "5439739",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1195",
+ "temp_id": "5439740",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1196",
+ "temp_id": "5439741",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1197",
+ "temp_id": "5439742",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1198",
+ "temp_id": "5439743",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1199",
+ "temp_id": "5439744",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1200",
+ "temp_id": "5439745",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1201",
+ "temp_id": "5439746",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "50",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1202",
+ "temp_id": "5439747",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "103461.0000"
+ },
+ {
+ "id": "1203",
+ "temp_id": "5439748",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1204",
+ "temp_id": "5439749",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1205",
+ "temp_id": "5439750",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1206",
+ "temp_id": "5439751",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1207",
+ "temp_id": "5439752",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1208",
+ "temp_id": "5439753",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1209",
+ "temp_id": "5439754",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1210",
+ "temp_id": "5439755",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1211",
+ "temp_id": "5439756",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1212",
+ "temp_id": "5439757",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1213",
+ "temp_id": "5439758",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1214",
+ "temp_id": "5439759",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1215",
+ "temp_id": "5439760",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1216",
+ "temp_id": "5439761",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1217",
+ "temp_id": "5439762",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1218",
+ "temp_id": "5439763",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1219",
+ "temp_id": "5439764",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1220",
+ "temp_id": "5439765",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1221",
+ "temp_id": "5439766",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1222",
+ "temp_id": "5439767",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1223",
+ "temp_id": "5439768",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1224",
+ "temp_id": "5439769",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1225",
+ "temp_id": "5439770",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "51",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1226",
+ "temp_id": "5439771",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1227",
+ "temp_id": "5439772",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1228",
+ "temp_id": "5439773",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1229",
+ "temp_id": "5439774",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1230",
+ "temp_id": "5439775",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1231",
+ "temp_id": "5439776",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1232",
+ "temp_id": "5439777",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1233",
+ "temp_id": "5439778",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1234",
+ "temp_id": "5439779",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1235",
+ "temp_id": "5439780",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1236",
+ "temp_id": "5439781",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1237",
+ "temp_id": "5439782",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1238",
+ "temp_id": "5439783",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1239",
+ "temp_id": "5439784",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1240",
+ "temp_id": "5439785",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1241",
+ "temp_id": "5439786",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1242",
+ "temp_id": "5439787",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1243",
+ "temp_id": "5439788",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1244",
+ "temp_id": "5439789",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1245",
+ "temp_id": "5439790",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1246",
+ "temp_id": "5439791",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1247",
+ "temp_id": "5439792",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1248",
+ "temp_id": "5439793",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1249",
+ "temp_id": "5439794",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "52",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1250",
+ "temp_id": "5439795",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "48900.0000"
+ },
+ {
+ "id": "1251",
+ "temp_id": "5439796",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1252",
+ "temp_id": "5439797",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1253",
+ "temp_id": "5439798",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1254",
+ "temp_id": "5439799",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1255",
+ "temp_id": "5439800",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1256",
+ "temp_id": "5439801",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1257",
+ "temp_id": "5439802",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1258",
+ "temp_id": "5439803",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1259",
+ "temp_id": "5439804",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1260",
+ "temp_id": "5439805",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1261",
+ "temp_id": "5439806",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1262",
+ "temp_id": "5439807",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1263",
+ "temp_id": "5439808",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1264",
+ "temp_id": "5439809",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1265",
+ "temp_id": "5439810",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1266",
+ "temp_id": "5439811",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1267",
+ "temp_id": "5439812",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1268",
+ "temp_id": "5439813",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1269",
+ "temp_id": "5439814",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1270",
+ "temp_id": "5439815",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1271",
+ "temp_id": "5439816",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1272",
+ "temp_id": "5439817",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1273",
+ "temp_id": "5439818",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "53",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1274",
+ "temp_id": "5439819",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1275",
+ "temp_id": "5439820",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1276",
+ "temp_id": "5439821",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1277",
+ "temp_id": "5439822",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1278",
+ "temp_id": "5439823",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1279",
+ "temp_id": "5439824",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1280",
+ "temp_id": "5439825",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1281",
+ "temp_id": "5439826",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1282",
+ "temp_id": "5439827",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1283",
+ "temp_id": "5439828",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1284",
+ "temp_id": "5439829",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1285",
+ "temp_id": "5439830",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1286",
+ "temp_id": "5439831",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1287",
+ "temp_id": "5439832",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1288",
+ "temp_id": "5439833",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1289",
+ "temp_id": "5439834",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1290",
+ "temp_id": "5439835",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1291",
+ "temp_id": "5439836",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1292",
+ "temp_id": "5439837",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1293",
+ "temp_id": "5439838",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1294",
+ "temp_id": "5439839",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1295",
+ "temp_id": "5439840",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1296",
+ "temp_id": "5439841",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2011-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1297",
+ "temp_id": "5439842",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "54",
+ "CFHistory24Monthsmonth": "2010-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1298",
+ "temp_id": "5439843",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1299",
+ "temp_id": "5439844",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1300",
+ "temp_id": "5439845",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1301",
+ "temp_id": "5439846",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1302",
+ "temp_id": "5439847",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1303",
+ "temp_id": "5439848",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1304",
+ "temp_id": "5439849",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1305",
+ "temp_id": "5439850",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1306",
+ "temp_id": "5439851",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1307",
+ "temp_id": "5439852",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1308",
+ "temp_id": "5439853",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1309",
+ "temp_id": "5439854",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1310",
+ "temp_id": "5439855",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1311",
+ "temp_id": "5439856",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1312",
+ "temp_id": "5439857",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1313",
+ "temp_id": "5439858",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1314",
+ "temp_id": "5439859",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1315",
+ "temp_id": "5439860",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1316",
+ "temp_id": "5439861",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1317",
+ "temp_id": "5439862",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1318",
+ "temp_id": "5439863",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1319",
+ "temp_id": "5439864",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1320",
+ "temp_id": "5439865",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2011-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1321",
+ "temp_id": "5439866",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "55",
+ "CFHistory24Monthsmonth": "2010-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1322",
+ "temp_id": "5439867",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2013-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1323",
+ "temp_id": "5439868",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1324",
+ "temp_id": "5439869",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1325",
+ "temp_id": "5439870",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1326",
+ "temp_id": "5439871",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1327",
+ "temp_id": "5439872",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1328",
+ "temp_id": "5439873",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1329",
+ "temp_id": "5439874",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1330",
+ "temp_id": "5439875",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1331",
+ "temp_id": "5439876",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1332",
+ "temp_id": "5439877",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1333",
+ "temp_id": "5439878",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1334",
+ "temp_id": "5439879",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1335",
+ "temp_id": "5439880",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1336",
+ "temp_id": "5439881",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1337",
+ "temp_id": "5439882",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1338",
+ "temp_id": "5439883",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1339",
+ "temp_id": "5439884",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1340",
+ "temp_id": "5439885",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1341",
+ "temp_id": "5439886",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1342",
+ "temp_id": "5439887",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1343",
+ "temp_id": "5439888",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1344",
+ "temp_id": "5439889",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1345",
+ "temp_id": "5439890",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "56",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1346",
+ "temp_id": "5439891",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2013-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1347",
+ "temp_id": "5439892",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2013-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1348",
+ "temp_id": "5439893",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1349",
+ "temp_id": "5439894",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1350",
+ "temp_id": "5439895",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1351",
+ "temp_id": "5439896",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1352",
+ "temp_id": "5439897",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1353",
+ "temp_id": "5439898",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1354",
+ "temp_id": "5439899",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1355",
+ "temp_id": "5439900",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1356",
+ "temp_id": "5439901",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1357",
+ "temp_id": "5439902",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1358",
+ "temp_id": "5439903",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1359",
+ "temp_id": "5439904",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1360",
+ "temp_id": "5439905",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1361",
+ "temp_id": "5439906",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1362",
+ "temp_id": "5439907",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1363",
+ "temp_id": "5439908",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1364",
+ "temp_id": "5439909",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1365",
+ "temp_id": "5439910",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1366",
+ "temp_id": "5439911",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1367",
+ "temp_id": "5439912",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1368",
+ "temp_id": "5439913",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1369",
+ "temp_id": "5439914",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "57",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1370",
+ "temp_id": "5439915",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2013-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1371",
+ "temp_id": "5439916",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1372",
+ "temp_id": "5439917",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1373",
+ "temp_id": "5439918",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1374",
+ "temp_id": "5439919",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1375",
+ "temp_id": "5439920",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1376",
+ "temp_id": "5439921",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1377",
+ "temp_id": "5439922",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1378",
+ "temp_id": "5439923",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1379",
+ "temp_id": "5439924",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1380",
+ "temp_id": "5439925",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1381",
+ "temp_id": "5439926",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1382",
+ "temp_id": "5439927",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1383",
+ "temp_id": "5439928",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1384",
+ "temp_id": "5439929",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1385",
+ "temp_id": "5439930",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1386",
+ "temp_id": "5439931",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1387",
+ "temp_id": "5439932",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1388",
+ "temp_id": "5439933",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1389",
+ "temp_id": "5439934",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1390",
+ "temp_id": "5439935",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1391",
+ "temp_id": "5439936",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1392",
+ "temp_id": "5439937",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1393",
+ "temp_id": "5439938",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "58",
+ "CFHistory24Monthsmonth": "2011-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1394",
+ "temp_id": "5439939",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1395",
+ "temp_id": "5439940",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1396",
+ "temp_id": "5439941",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1397",
+ "temp_id": "5439942",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1398",
+ "temp_id": "5439943",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1399",
+ "temp_id": "5439944",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1400",
+ "temp_id": "5439945",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1401",
+ "temp_id": "5439946",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1402",
+ "temp_id": "5439947",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1403",
+ "temp_id": "5439948",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2012-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1404",
+ "temp_id": "5439949",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1405",
+ "temp_id": "5439950",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1406",
+ "temp_id": "5439951",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1407",
+ "temp_id": "5439952",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1408",
+ "temp_id": "5439953",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1409",
+ "temp_id": "5439954",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1410",
+ "temp_id": "5439955",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1411",
+ "temp_id": "5439956",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1412",
+ "temp_id": "5439957",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1413",
+ "temp_id": "5439958",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1414",
+ "temp_id": "5439959",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1415",
+ "temp_id": "5439960",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2011-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1416",
+ "temp_id": "5439961",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2010-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1417",
+ "temp_id": "5439962",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "59",
+ "CFHistory24Monthsmonth": "2010-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1418",
+ "temp_id": "5439963",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1419",
+ "temp_id": "5439964",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1420",
+ "temp_id": "5439965",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1421",
+ "temp_id": "5439966",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1422",
+ "temp_id": "5439967",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1423",
+ "temp_id": "5439968",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1424",
+ "temp_id": "5439969",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1425",
+ "temp_id": "5439970",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1426",
+ "temp_id": "5439971",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1427",
+ "temp_id": "5439972",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1428",
+ "temp_id": "5439973",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1429",
+ "temp_id": "5439974",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1430",
+ "temp_id": "5439975",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1431",
+ "temp_id": "5439976",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1432",
+ "temp_id": "5439977",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1433",
+ "temp_id": "5439978",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1434",
+ "temp_id": "5439979",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1435",
+ "temp_id": "5439980",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1436",
+ "temp_id": "5439981",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1437",
+ "temp_id": "5439982",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1438",
+ "temp_id": "5439983",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1439",
+ "temp_id": "5439984",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1440",
+ "temp_id": "5439985",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1441",
+ "temp_id": "5439986",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "60",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1442",
+ "temp_id": "5439987",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1443",
+ "temp_id": "5439988",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1444",
+ "temp_id": "5439989",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1445",
+ "temp_id": "5439990",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1446",
+ "temp_id": "5439991",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1447",
+ "temp_id": "5439992",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1448",
+ "temp_id": "5439993",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1449",
+ "temp_id": "5439994",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1450",
+ "temp_id": "5439995",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1451",
+ "temp_id": "5439996",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1452",
+ "temp_id": "5439997",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1453",
+ "temp_id": "5439998",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1454",
+ "temp_id": "5439999",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1455",
+ "temp_id": "5440000",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1456",
+ "temp_id": "5440001",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1457",
+ "temp_id": "5440002",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1458",
+ "temp_id": "5440003",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1459",
+ "temp_id": "5440004",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1460",
+ "temp_id": "5440005",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1461",
+ "temp_id": "5440006",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1462",
+ "temp_id": "5440007",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1463",
+ "temp_id": "5440008",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1464",
+ "temp_id": "5440009",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1465",
+ "temp_id": "5440010",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "61",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1466",
+ "temp_id": "5440011",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1467",
+ "temp_id": "5440012",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1468",
+ "temp_id": "5440013",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1469",
+ "temp_id": "5440014",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1470",
+ "temp_id": "5440015",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1471",
+ "temp_id": "5440016",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1472",
+ "temp_id": "5440017",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1473",
+ "temp_id": "5440018",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1474",
+ "temp_id": "5440019",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1475",
+ "temp_id": "5440020",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1476",
+ "temp_id": "5440021",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1477",
+ "temp_id": "5440022",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1478",
+ "temp_id": "5440023",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1479",
+ "temp_id": "5440024",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1480",
+ "temp_id": "5440025",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1481",
+ "temp_id": "5440026",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1482",
+ "temp_id": "5440027",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1483",
+ "temp_id": "5440028",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1484",
+ "temp_id": "5440029",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1485",
+ "temp_id": "5440030",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1486",
+ "temp_id": "5440031",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1487",
+ "temp_id": "5440032",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1488",
+ "temp_id": "5440033",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1489",
+ "temp_id": "5440034",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "62",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1490",
+ "temp_id": "5440035",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1491",
+ "temp_id": "5440036",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1492",
+ "temp_id": "5440037",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1493",
+ "temp_id": "5440038",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1494",
+ "temp_id": "5440039",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1495",
+ "temp_id": "5440040",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1496",
+ "temp_id": "5440041",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1497",
+ "temp_id": "5440042",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1498",
+ "temp_id": "5440043",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1499",
+ "temp_id": "5440044",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1500",
+ "temp_id": "5440045",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1501",
+ "temp_id": "5440046",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1502",
+ "temp_id": "5440047",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1503",
+ "temp_id": "5440048",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1504",
+ "temp_id": "5440049",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1505",
+ "temp_id": "5440050",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1506",
+ "temp_id": "5440051",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1507",
+ "temp_id": "5440052",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1508",
+ "temp_id": "5440053",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1509",
+ "temp_id": "5440054",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1510",
+ "temp_id": "5440055",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1511",
+ "temp_id": "5440056",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1512",
+ "temp_id": "5440057",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1513",
+ "temp_id": "5440058",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "63",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1514",
+ "temp_id": "5440059",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1515",
+ "temp_id": "5440060",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1516",
+ "temp_id": "5440061",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1517",
+ "temp_id": "5440062",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1518",
+ "temp_id": "5440063",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1519",
+ "temp_id": "5440064",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1520",
+ "temp_id": "5440065",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1521",
+ "temp_id": "5440066",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1522",
+ "temp_id": "5440067",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1523",
+ "temp_id": "5440068",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1524",
+ "temp_id": "5440069",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1525",
+ "temp_id": "5440070",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1526",
+ "temp_id": "5440071",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1527",
+ "temp_id": "5440072",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1528",
+ "temp_id": "5440073",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1529",
+ "temp_id": "5440074",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1530",
+ "temp_id": "5440075",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1531",
+ "temp_id": "5440076",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1532",
+ "temp_id": "5440077",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1533",
+ "temp_id": "5440078",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1534",
+ "temp_id": "5440079",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1535",
+ "temp_id": "5440080",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1536",
+ "temp_id": "5440081",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1537",
+ "temp_id": "5440082",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "64",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1538",
+ "temp_id": "5440083",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1539",
+ "temp_id": "5440084",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1540",
+ "temp_id": "5440085",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1541",
+ "temp_id": "5440086",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1542",
+ "temp_id": "5440087",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1543",
+ "temp_id": "5440088",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1544",
+ "temp_id": "5440089",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1545",
+ "temp_id": "5440090",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1546",
+ "temp_id": "5440091",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1547",
+ "temp_id": "5440092",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1548",
+ "temp_id": "5440093",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1016259.0000"
+ },
+ {
+ "id": "1549",
+ "temp_id": "5440094",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1550",
+ "temp_id": "5440095",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "5884813.0000"
+ },
+ {
+ "id": "1551",
+ "temp_id": "5440096",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "5869019.0000"
+ },
+ {
+ "id": "1552",
+ "temp_id": "5440097",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "5776102.0000"
+ },
+ {
+ "id": "1553",
+ "temp_id": "5440098",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1554",
+ "temp_id": "5440099",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "582758.0000"
+ },
+ {
+ "id": "1555",
+ "temp_id": "5440100",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1110284.0000"
+ },
+ {
+ "id": "1556",
+ "temp_id": "5440101",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "5887465.0000"
+ },
+ {
+ "id": "1557",
+ "temp_id": "5440102",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "5877484.0000"
+ },
+ {
+ "id": "1558",
+ "temp_id": "5440103",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1559",
+ "temp_id": "5440104",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1560",
+ "temp_id": "5440105",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1561",
+ "temp_id": "5440106",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "65",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1562",
+ "temp_id": "5440107",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2021-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8262417.0000"
+ },
+ {
+ "id": "1563",
+ "temp_id": "5440108",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8325567.0000"
+ },
+ {
+ "id": "1564",
+ "temp_id": "5440109",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8379260.0000"
+ },
+ {
+ "id": "1565",
+ "temp_id": "5440110",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8431400.0000"
+ },
+ {
+ "id": "1566",
+ "temp_id": "5440111",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8487508.0000"
+ },
+ {
+ "id": "1567",
+ "temp_id": "5440112",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8540302.0000"
+ },
+ {
+ "id": "1568",
+ "temp_id": "5440113",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8595351.0000"
+ },
+ {
+ "id": "1569",
+ "temp_id": "5440114",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8647061.0000"
+ },
+ {
+ "id": "1570",
+ "temp_id": "5440115",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8698523.0000"
+ },
+ {
+ "id": "1571",
+ "temp_id": "5440116",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8752020.0000"
+ },
+ {
+ "id": "1572",
+ "temp_id": "5440117",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8802181.0000"
+ },
+ {
+ "id": "1573",
+ "temp_id": "5440118",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8853459.0000"
+ },
+ {
+ "id": "1574",
+ "temp_id": "5440119",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8902596.0000"
+ },
+ {
+ "id": "1575",
+ "temp_id": "5440120",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "8957025.0000"
+ },
+ {
+ "id": "1576",
+ "temp_id": "5440121",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "9004436.0000"
+ },
+ {
+ "id": "1577",
+ "temp_id": "5440122",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "23 Days Pa",
+ "CFHistory24MonthsOSAmount": "9056709.0000"
+ },
+ {
+ "id": "1578",
+ "temp_id": "5440123",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "22 Days Pa",
+ "CFHistory24MonthsOSAmount": "9106735.0000"
+ },
+ {
+ "id": "1579",
+ "temp_id": "5440124",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "23 Days Pa",
+ "CFHistory24MonthsOSAmount": "9153218.0000"
+ },
+ {
+ "id": "1580",
+ "temp_id": "5440125",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "9199948.0000"
+ },
+ {
+ "id": "1581",
+ "temp_id": "5440126",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "23 Days Pa",
+ "CFHistory24MonthsOSAmount": "9248472.0000"
+ },
+ {
+ "id": "1582",
+ "temp_id": "5440127",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "23 Days Pa",
+ "CFHistory24MonthsOSAmount": "9291284.0000"
+ },
+ {
+ "id": "1583",
+ "temp_id": "5440128",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "22 Days Pa",
+ "CFHistory24MonthsOSAmount": "9338487.0000"
+ },
+ {
+ "id": "1584",
+ "temp_id": "5440129",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "9381089.0000"
+ },
+ {
+ "id": "1585",
+ "temp_id": "5440130",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "66",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "9427280.0000"
+ },
+ {
+ "id": "1586",
+ "temp_id": "5440131",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2021-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1587",
+ "temp_id": "5440132",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2021-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1588",
+ "temp_id": "5440133",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1589",
+ "temp_id": "5440134",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1590",
+ "temp_id": "5440135",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "978844.0000"
+ },
+ {
+ "id": "1591",
+ "temp_id": "5440136",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "985938.0000"
+ },
+ {
+ "id": "1592",
+ "temp_id": "5440137",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1593",
+ "temp_id": "5440138",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1594",
+ "temp_id": "5440139",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1595",
+ "temp_id": "5440140",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1596",
+ "temp_id": "5440141",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1597",
+ "temp_id": "5440142",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1598",
+ "temp_id": "5440143",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1599",
+ "temp_id": "5440144",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1600",
+ "temp_id": "5440145",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1601",
+ "temp_id": "5440146",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1602",
+ "temp_id": "5440147",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1603",
+ "temp_id": "5440148",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1604",
+ "temp_id": "5440149",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1605",
+ "temp_id": "5440150",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1606",
+ "temp_id": "5440151",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1607",
+ "temp_id": "5440152",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1608",
+ "temp_id": "5440153",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1609",
+ "temp_id": "5440154",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "67",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1610",
+ "temp_id": "5440155",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1611",
+ "temp_id": "5440156",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1612",
+ "temp_id": "5440157",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1613",
+ "temp_id": "5440158",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1614",
+ "temp_id": "5440159",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1615",
+ "temp_id": "5440160",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1616",
+ "temp_id": "5440161",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1617",
+ "temp_id": "5440162",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1618",
+ "temp_id": "5440163",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1619",
+ "temp_id": "5440164",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1620",
+ "temp_id": "5440165",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1621",
+ "temp_id": "5440166",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1622",
+ "temp_id": "5440167",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1623",
+ "temp_id": "5440168",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1624",
+ "temp_id": "5440169",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1625",
+ "temp_id": "5440170",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1626",
+ "temp_id": "5440171",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1627",
+ "temp_id": "5440172",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1628",
+ "temp_id": "5440173",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1629",
+ "temp_id": "5440174",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1630",
+ "temp_id": "5440175",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1631",
+ "temp_id": "5440176",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1632",
+ "temp_id": "5440177",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1633",
+ "temp_id": "5440178",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "68",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1634",
+ "temp_id": "5440179",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1635",
+ "temp_id": "5440180",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1636",
+ "temp_id": "5440181",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1637",
+ "temp_id": "5440182",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1638",
+ "temp_id": "5440183",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1639",
+ "temp_id": "5440184",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1640",
+ "temp_id": "5440185",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1641",
+ "temp_id": "5440186",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1642",
+ "temp_id": "5440187",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1643",
+ "temp_id": "5440188",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1644",
+ "temp_id": "5440189",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1645",
+ "temp_id": "5440190",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1646",
+ "temp_id": "5440191",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1647",
+ "temp_id": "5440192",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1648",
+ "temp_id": "5440193",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1649",
+ "temp_id": "5440194",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1650",
+ "temp_id": "5440195",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1651",
+ "temp_id": "5440196",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1652",
+ "temp_id": "5440197",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1653",
+ "temp_id": "5440198",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2015-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1654",
+ "temp_id": "5440199",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2014-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1655",
+ "temp_id": "5440200",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2014-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1656",
+ "temp_id": "5440201",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2014-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "7747342.0000"
+ },
+ {
+ "id": "1657",
+ "temp_id": "5440202",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "69",
+ "CFHistory24Monthsmonth": "2014-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "8079610.0000"
+ },
+ {
+ "id": "1658",
+ "temp_id": "5440203",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "250494.0000"
+ },
+ {
+ "id": "1659",
+ "temp_id": "5440204",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "260954.0000"
+ },
+ {
+ "id": "1660",
+ "temp_id": "5440205",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "271273.0000"
+ },
+ {
+ "id": "1661",
+ "temp_id": "5440206",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "281580.0000"
+ },
+ {
+ "id": "1662",
+ "temp_id": "5440207",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "19 Days Pa",
+ "CFHistory24MonthsOSAmount": "304022.0000"
+ },
+ {
+ "id": "1663",
+ "temp_id": "5440208",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "301690.0000"
+ },
+ {
+ "id": "1664",
+ "temp_id": "5440209",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "311748.0000"
+ },
+ {
+ "id": "1665",
+ "temp_id": "5440210",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "321598.0000"
+ },
+ {
+ "id": "1666",
+ "temp_id": "5440211",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "331473.0000"
+ },
+ {
+ "id": "1667",
+ "temp_id": "5440212",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "341223.0000"
+ },
+ {
+ "id": "1668",
+ "temp_id": "5440213",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "19 Days Pa",
+ "CFHistory24MonthsOSAmount": "363440.0000"
+ },
+ {
+ "id": "1669",
+ "temp_id": "5440214",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "360652.0000"
+ },
+ {
+ "id": "1670",
+ "temp_id": "5440215",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "370179.0000"
+ },
+ {
+ "id": "1671",
+ "temp_id": "5440216",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "379728.0000"
+ },
+ {
+ "id": "1672",
+ "temp_id": "5440217",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "389072.0000"
+ },
+ {
+ "id": "1673",
+ "temp_id": "5440218",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "398481.0000"
+ },
+ {
+ "id": "1674",
+ "temp_id": "5440219",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "407684.0000"
+ },
+ {
+ "id": "1675",
+ "temp_id": "5440220",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "18 Days Pa",
+ "CFHistory24MonthsOSAmount": "429093.0000"
+ },
+ {
+ "id": "1676",
+ "temp_id": "5440221",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "19 Days Pa",
+ "CFHistory24MonthsOSAmount": "438011.0000"
+ },
+ {
+ "id": "1677",
+ "temp_id": "5440222",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "434724.0000"
+ },
+ {
+ "id": "1678",
+ "temp_id": "5440223",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "443519.0000"
+ },
+ {
+ "id": "1679",
+ "temp_id": "5440224",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "16 Days Pa",
+ "CFHistory24MonthsOSAmount": "465083.0000"
+ },
+ {
+ "id": "1680",
+ "temp_id": "5440225",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "461930.0000"
+ },
+ {
+ "id": "1681",
+ "temp_id": "5440226",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "70",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "470015.0000"
+ },
+ {
+ "id": "1682",
+ "temp_id": "5440227",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1683",
+ "temp_id": "5440228",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1684",
+ "temp_id": "5440229",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1685",
+ "temp_id": "5440230",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1686",
+ "temp_id": "5440231",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1687",
+ "temp_id": "5440232",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1688",
+ "temp_id": "5440233",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1689",
+ "temp_id": "5440234",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1690",
+ "temp_id": "5440235",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1691",
+ "temp_id": "5440236",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1692",
+ "temp_id": "5440237",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1693",
+ "temp_id": "5440238",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "10.0000"
+ },
+ {
+ "id": "1694",
+ "temp_id": "5440239",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "9730.0000"
+ },
+ {
+ "id": "1695",
+ "temp_id": "5440240",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "19180.0000"
+ },
+ {
+ "id": "1696",
+ "temp_id": "5440241",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "28558.0000"
+ },
+ {
+ "id": "1697",
+ "temp_id": "5440242",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "37855.0000"
+ },
+ {
+ "id": "1698",
+ "temp_id": "5440243",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "47074.0000"
+ },
+ {
+ "id": "1699",
+ "temp_id": "5440244",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "30 Days Pa",
+ "CFHistory24MonthsOSAmount": "57924.0000"
+ },
+ {
+ "id": "1700",
+ "temp_id": "5440245",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "65291.0000"
+ },
+ {
+ "id": "1701",
+ "temp_id": "5440246",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "73353.0000"
+ },
+ {
+ "id": "1702",
+ "temp_id": "5440247",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "27 Days Pa",
+ "CFHistory24MonthsOSAmount": "90674.0000"
+ },
+ {
+ "id": "1703",
+ "temp_id": "5440248",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "92022.0000"
+ },
+ {
+ "id": "1704",
+ "temp_id": "5440249",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "100739.0000"
+ },
+ {
+ "id": "1705",
+ "temp_id": "5440250",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "71",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "109392.0000"
+ },
+ {
+ "id": "1706",
+ "temp_id": "5440251",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "46977.0000"
+ },
+ {
+ "id": "1707",
+ "temp_id": "5440252",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "46479.0000"
+ },
+ {
+ "id": "1708",
+ "temp_id": "5440253",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "44398.0000"
+ },
+ {
+ "id": "1709",
+ "temp_id": "5440254",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "39861.0000"
+ },
+ {
+ "id": "1710",
+ "temp_id": "5440255",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "34051.0000"
+ },
+ {
+ "id": "1711",
+ "temp_id": "5440256",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "25160.0000"
+ },
+ {
+ "id": "1712",
+ "temp_id": "5440257",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "16178.0000"
+ },
+ {
+ "id": "1713",
+ "temp_id": "5440258",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1114040.0000"
+ },
+ {
+ "id": "1714",
+ "temp_id": "5440259",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1226486.0000"
+ },
+ {
+ "id": "1715",
+ "temp_id": "5440260",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1338395.0000"
+ },
+ {
+ "id": "1716",
+ "temp_id": "5440261",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1447224.0000"
+ },
+ {
+ "id": "1717",
+ "temp_id": "5440262",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1555794.0000"
+ },
+ {
+ "id": "1718",
+ "temp_id": "5440263",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1657427.0000"
+ },
+ {
+ "id": "1719",
+ "temp_id": "5440264",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1758027.0000"
+ },
+ {
+ "id": "1720",
+ "temp_id": "5440265",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1857104.0000"
+ },
+ {
+ "id": "1721",
+ "temp_id": "5440266",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1957371.0000"
+ },
+ {
+ "id": "1722",
+ "temp_id": "5440267",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2058038.0000"
+ },
+ {
+ "id": "1723",
+ "temp_id": "5440268",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2194115.0000"
+ },
+ {
+ "id": "1724",
+ "temp_id": "5440269",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2295820.0000"
+ },
+ {
+ "id": "1725",
+ "temp_id": "5440270",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2392713.0000"
+ },
+ {
+ "id": "1726",
+ "temp_id": "5440271",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2486857.0000"
+ },
+ {
+ "id": "1727",
+ "temp_id": "5440272",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2509116.0000"
+ },
+ {
+ "id": "1728",
+ "temp_id": "5440273",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2509116.0000"
+ },
+ {
+ "id": "1729",
+ "temp_id": "5440274",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "72",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1730",
+ "temp_id": "5440275",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1731",
+ "temp_id": "5440276",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1732",
+ "temp_id": "5440277",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1733",
+ "temp_id": "5440278",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1734",
+ "temp_id": "5440279",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1735",
+ "temp_id": "5440280",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1628511.0000"
+ },
+ {
+ "id": "1736",
+ "temp_id": "5440281",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1693303.0000"
+ },
+ {
+ "id": "1737",
+ "temp_id": "5440282",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1757073.0000"
+ },
+ {
+ "id": "1738",
+ "temp_id": "5440283",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1739",
+ "temp_id": "5440284",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1740",
+ "temp_id": "5440285",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1942404.0000"
+ },
+ {
+ "id": "1741",
+ "temp_id": "5440286",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2002241.0000"
+ },
+ {
+ "id": "1742",
+ "temp_id": "5440287",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2061133.0000"
+ },
+ {
+ "id": "1743",
+ "temp_id": "5440288",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2119095.0000"
+ },
+ {
+ "id": "1744",
+ "temp_id": "5440289",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2176142.0000"
+ },
+ {
+ "id": "1745",
+ "temp_id": "5440290",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2232288.0000"
+ },
+ {
+ "id": "1746",
+ "temp_id": "5440291",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1747",
+ "temp_id": "5440292",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1748",
+ "temp_id": "5440293",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1749",
+ "temp_id": "5440294",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1750",
+ "temp_id": "5440295",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1751",
+ "temp_id": "5440296",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1752",
+ "temp_id": "5440297",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1753",
+ "temp_id": "5440298",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "73",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1754",
+ "temp_id": "5440299",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1755",
+ "temp_id": "5440300",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1756",
+ "temp_id": "5440301",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1757",
+ "temp_id": "5440302",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1758",
+ "temp_id": "5440303",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1759",
+ "temp_id": "5440304",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1760",
+ "temp_id": "5440305",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1761",
+ "temp_id": "5440306",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1762",
+ "temp_id": "5440307",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1763",
+ "temp_id": "5440308",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1764",
+ "temp_id": "5440309",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1765",
+ "temp_id": "5440310",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1766",
+ "temp_id": "5440311",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1767",
+ "temp_id": "5440312",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1768",
+ "temp_id": "5440313",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1769",
+ "temp_id": "5440314",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1770",
+ "temp_id": "5440315",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1771",
+ "temp_id": "5440316",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1772",
+ "temp_id": "5440317",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1773",
+ "temp_id": "5440318",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1774",
+ "temp_id": "5440319",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1775",
+ "temp_id": "5440320",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1776",
+ "temp_id": "5440321",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1777",
+ "temp_id": "5440322",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "74",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1778",
+ "temp_id": "5440323",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1779",
+ "temp_id": "5440324",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1780",
+ "temp_id": "5440325",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1781",
+ "temp_id": "5440326",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1782",
+ "temp_id": "5440327",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1783",
+ "temp_id": "5440328",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1784",
+ "temp_id": "5440329",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1785",
+ "temp_id": "5440330",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1786",
+ "temp_id": "5440331",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1787",
+ "temp_id": "5440332",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1788",
+ "temp_id": "5440333",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1789",
+ "temp_id": "5440334",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1790",
+ "temp_id": "5440335",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1791",
+ "temp_id": "5440336",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1792",
+ "temp_id": "5440337",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1793",
+ "temp_id": "5440338",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1794",
+ "temp_id": "5440339",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1795",
+ "temp_id": "5440340",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1796",
+ "temp_id": "5440341",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1797",
+ "temp_id": "5440342",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1798",
+ "temp_id": "5440343",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1799",
+ "temp_id": "5440344",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751221.0000"
+ },
+ {
+ "id": "1800",
+ "temp_id": "5440345",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "751621.0000"
+ },
+ {
+ "id": "1801",
+ "temp_id": "5440346",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "75",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "817831.0000"
+ },
+ {
+ "id": "1802",
+ "temp_id": "5440347",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1803",
+ "temp_id": "5440348",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1804",
+ "temp_id": "5440349",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1805",
+ "temp_id": "5440350",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1806",
+ "temp_id": "5440351",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2020-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1295629.0000"
+ },
+ {
+ "id": "1807",
+ "temp_id": "5440352",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1350526.0000"
+ },
+ {
+ "id": "1808",
+ "temp_id": "5440353",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1423032.0000"
+ },
+ {
+ "id": "1809",
+ "temp_id": "5440354",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1452336.0000"
+ },
+ {
+ "id": "1810",
+ "temp_id": "5440355",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1502103.0000"
+ },
+ {
+ "id": "1811",
+ "temp_id": "5440356",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1551127.0000"
+ },
+ {
+ "id": "1812",
+ "temp_id": "5440357",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1598474.0000"
+ },
+ {
+ "id": "1813",
+ "temp_id": "5440358",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1645100.0000"
+ },
+ {
+ "id": "1814",
+ "temp_id": "5440359",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1691015.0000"
+ },
+ {
+ "id": "1815",
+ "temp_id": "5440360",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1763521.0000"
+ },
+ {
+ "id": "1816",
+ "temp_id": "5440361",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1782643.0000"
+ },
+ {
+ "id": "1817",
+ "temp_id": "5440362",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1827433.0000"
+ },
+ {
+ "id": "1818",
+ "temp_id": "5440363",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1871553.0000"
+ },
+ {
+ "id": "1819",
+ "temp_id": "5440364",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1915015.0000"
+ },
+ {
+ "id": "1820",
+ "temp_id": "5440365",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1915015.0000"
+ },
+ {
+ "id": "1821",
+ "temp_id": "5440366",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1957827.0000"
+ },
+ {
+ "id": "1822",
+ "temp_id": "5440367",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "1823",
+ "temp_id": "5440368",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1824",
+ "temp_id": "5440369",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1825",
+ "temp_id": "5440370",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "76",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1826",
+ "temp_id": "5440371",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1839256.0000"
+ },
+ {
+ "id": "1827",
+ "temp_id": "5440372",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1919028.0000"
+ },
+ {
+ "id": "1828",
+ "temp_id": "5440373",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1997685.0000"
+ },
+ {
+ "id": "1829",
+ "temp_id": "5440374",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2075244.0000"
+ },
+ {
+ "id": "1830",
+ "temp_id": "5440375",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "2151719.0000"
+ },
+ {
+ "id": "1831",
+ "temp_id": "5440376",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "11 Days Pa",
+ "CFHistory24MonthsOSAmount": "2334084.0000"
+ },
+ {
+ "id": "1832",
+ "temp_id": "5440377",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "2408438.0000"
+ },
+ {
+ "id": "1833",
+ "temp_id": "5440378",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "11 Days Pa",
+ "CFHistory24MonthsOSAmount": "2481753.0000"
+ },
+ {
+ "id": "1834",
+ "temp_id": "5440379",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "10 Days Pa",
+ "CFHistory24MonthsOSAmount": "2554044.0000"
+ },
+ {
+ "id": "1835",
+ "temp_id": "5440380",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1836",
+ "temp_id": "5440381",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1837",
+ "temp_id": "5440382",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1838",
+ "temp_id": "5440383",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1839",
+ "temp_id": "5440384",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1840",
+ "temp_id": "5440385",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1841",
+ "temp_id": "5440386",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1842",
+ "temp_id": "5440387",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1843",
+ "temp_id": "5440388",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1844",
+ "temp_id": "5440389",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1845",
+ "temp_id": "5440390",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1846",
+ "temp_id": "5440391",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1847",
+ "temp_id": "5440392",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1848",
+ "temp_id": "5440393",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1849",
+ "temp_id": "5440394",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "77",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1850",
+ "temp_id": "5440395",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1851",
+ "temp_id": "5440396",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1349686.0000"
+ },
+ {
+ "id": "1852",
+ "temp_id": "5440397",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1400896.0000"
+ },
+ {
+ "id": "1853",
+ "temp_id": "5440398",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1451329.0000"
+ },
+ {
+ "id": "1854",
+ "temp_id": "5440399",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500996.0000"
+ },
+ {
+ "id": "1855",
+ "temp_id": "5440400",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1549909.0000"
+ },
+ {
+ "id": "1856",
+ "temp_id": "5440401",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1598079.0000"
+ },
+ {
+ "id": "1857",
+ "temp_id": "5440402",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1645518.0000"
+ },
+ {
+ "id": "1858",
+ "temp_id": "5440403",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1692237.0000"
+ },
+ {
+ "id": "1859",
+ "temp_id": "5440404",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1738247.0000"
+ },
+ {
+ "id": "1860",
+ "temp_id": "5440405",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1783558.0000"
+ },
+ {
+ "id": "1861",
+ "temp_id": "5440406",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1828181.0000"
+ },
+ {
+ "id": "1862",
+ "temp_id": "5440407",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1863",
+ "temp_id": "5440408",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1864",
+ "temp_id": "5440409",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1958026.0000"
+ },
+ {
+ "id": "1865",
+ "temp_id": "5440410",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "1866",
+ "temp_id": "5440411",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "1867",
+ "temp_id": "5440412",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1868",
+ "temp_id": "5440413",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1869",
+ "temp_id": "5440414",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1870",
+ "temp_id": "5440415",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1871",
+ "temp_id": "5440416",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1872",
+ "temp_id": "5440417",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1873",
+ "temp_id": "5440418",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "78",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1874",
+ "temp_id": "5440419",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2470461.0000"
+ },
+ {
+ "id": "1875",
+ "temp_id": "5440420",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2559862.0000"
+ },
+ {
+ "id": "1876",
+ "temp_id": "5440421",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2647941.0000"
+ },
+ {
+ "id": "1877",
+ "temp_id": "5440422",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2734719.0000"
+ },
+ {
+ "id": "1878",
+ "temp_id": "5440423",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2820214.0000"
+ },
+ {
+ "id": "1879",
+ "temp_id": "5440424",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2904446.0000"
+ },
+ {
+ "id": "1880",
+ "temp_id": "5440425",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2987433.0000"
+ },
+ {
+ "id": "1881",
+ "temp_id": "5440426",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3069194.0000"
+ },
+ {
+ "id": "1882",
+ "temp_id": "5440427",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3149746.0000"
+ },
+ {
+ "id": "1883",
+ "temp_id": "5440428",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3229108.0000"
+ },
+ {
+ "id": "1884",
+ "temp_id": "5440429",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3307297.0000"
+ },
+ {
+ "id": "1885",
+ "temp_id": "5440430",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3384331.0000"
+ },
+ {
+ "id": "1886",
+ "temp_id": "5440431",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3460226.0000"
+ },
+ {
+ "id": "1887",
+ "temp_id": "5440432",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3535000.0000"
+ },
+ {
+ "id": "1888",
+ "temp_id": "5440433",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "3535000.0000"
+ },
+ {
+ "id": "1889",
+ "temp_id": "5440434",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1890",
+ "temp_id": "5440435",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1891",
+ "temp_id": "5440436",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1892",
+ "temp_id": "5440437",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1893",
+ "temp_id": "5440438",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1894",
+ "temp_id": "5440439",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1895",
+ "temp_id": "5440440",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1896",
+ "temp_id": "5440441",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1897",
+ "temp_id": "5440442",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "79",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1898",
+ "temp_id": "5440443",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "469305.0000"
+ },
+ {
+ "id": "1899",
+ "temp_id": "5440444",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "559266.0000"
+ },
+ {
+ "id": "1900",
+ "temp_id": "5440445",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "647439.0000"
+ },
+ {
+ "id": "1901",
+ "temp_id": "5440446",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "737172.0000"
+ },
+ {
+ "id": "1902",
+ "temp_id": "5440447",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "814684.0000"
+ },
+ {
+ "id": "1903",
+ "temp_id": "5440448",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "902522.0000"
+ },
+ {
+ "id": "1904",
+ "temp_id": "5440449",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "982399.0000"
+ },
+ {
+ "id": "1905",
+ "temp_id": "5440450",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1037564.0000"
+ },
+ {
+ "id": "1906",
+ "temp_id": "5440451",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1151714.0000"
+ },
+ {
+ "id": "1907",
+ "temp_id": "5440452",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1151714.0000"
+ },
+ {
+ "id": "1908",
+ "temp_id": "5440453",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1224641.0000"
+ },
+ {
+ "id": "1909",
+ "temp_id": "5440454",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1293498.0000"
+ },
+ {
+ "id": "1910",
+ "temp_id": "5440455",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1362774.0000"
+ },
+ {
+ "id": "1911",
+ "temp_id": "5440456",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1429031.0000"
+ },
+ {
+ "id": "1912",
+ "temp_id": "5440457",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1913",
+ "temp_id": "5440458",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1914",
+ "temp_id": "5440459",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1915",
+ "temp_id": "5440460",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1916",
+ "temp_id": "5440461",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1917",
+ "temp_id": "5440462",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1918",
+ "temp_id": "5440463",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1919",
+ "temp_id": "5440464",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1920",
+ "temp_id": "5440465",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1921",
+ "temp_id": "5440466",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "80",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1922",
+ "temp_id": "5440467",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1349983.0000"
+ },
+ {
+ "id": "1923",
+ "temp_id": "5440468",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1400780.0000"
+ },
+ {
+ "id": "1924",
+ "temp_id": "5440469",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1451516.0000"
+ },
+ {
+ "id": "1925",
+ "temp_id": "5440470",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500622.0000"
+ },
+ {
+ "id": "1926",
+ "temp_id": "5440471",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1548968.0000"
+ },
+ {
+ "id": "1927",
+ "temp_id": "5440472",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1597367.0000"
+ },
+ {
+ "id": "1928",
+ "temp_id": "5440473",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1670174.0000"
+ },
+ {
+ "id": "1929",
+ "temp_id": "5440474",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1691426.0000"
+ },
+ {
+ "id": "1930",
+ "temp_id": "5440475",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1736942.0000"
+ },
+ {
+ "id": "1931",
+ "temp_id": "5440476",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1784425.0000"
+ },
+ {
+ "id": "1932",
+ "temp_id": "5440477",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1828502.0000"
+ },
+ {
+ "id": "1933",
+ "temp_id": "5440478",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1871897.0000"
+ },
+ {
+ "id": "1934",
+ "temp_id": "5440479",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1915556.0000"
+ },
+ {
+ "id": "1935",
+ "temp_id": "5440480",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1957604.0000"
+ },
+ {
+ "id": "1936",
+ "temp_id": "5440481",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2000000.0000"
+ },
+ {
+ "id": "1937",
+ "temp_id": "5440482",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1938",
+ "temp_id": "5440483",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1939",
+ "temp_id": "5440484",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1940",
+ "temp_id": "5440485",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1941",
+ "temp_id": "5440486",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1942",
+ "temp_id": "5440487",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1943",
+ "temp_id": "5440488",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1944",
+ "temp_id": "5440489",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1945",
+ "temp_id": "5440490",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "81",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1946",
+ "temp_id": "5440491",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1947",
+ "temp_id": "5440492",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1948",
+ "temp_id": "5440493",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "238484.0000"
+ },
+ {
+ "id": "1949",
+ "temp_id": "5440494",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1950",
+ "temp_id": "5440495",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "906172.0000"
+ },
+ {
+ "id": "1951",
+ "temp_id": "5440496",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1952",
+ "temp_id": "5440497",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1049248.0000"
+ },
+ {
+ "id": "1953",
+ "temp_id": "5440498",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1240016.0000"
+ },
+ {
+ "id": "1954",
+ "temp_id": "5440499",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1430784.0000"
+ },
+ {
+ "id": "1955",
+ "temp_id": "5440500",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1669220.0000"
+ },
+ {
+ "id": "1956",
+ "temp_id": "5440501",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1957",
+ "temp_id": "5440502",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1958",
+ "temp_id": "5440503",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1959",
+ "temp_id": "5440504",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1960",
+ "temp_id": "5440505",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1961",
+ "temp_id": "5440506",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1962",
+ "temp_id": "5440507",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1963",
+ "temp_id": "5440508",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1964",
+ "temp_id": "5440509",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1965",
+ "temp_id": "5440510",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1966",
+ "temp_id": "5440511",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1967",
+ "temp_id": "5440512",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1968",
+ "temp_id": "5440513",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1969",
+ "temp_id": "5440514",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "82",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1970",
+ "temp_id": "5440515",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1971",
+ "temp_id": "5440516",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1972",
+ "temp_id": "5440517",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1973",
+ "temp_id": "5440518",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1974",
+ "temp_id": "5440519",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1975",
+ "temp_id": "5440520",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1976",
+ "temp_id": "5440521",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "1977",
+ "temp_id": "5440522",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "99247.0000"
+ },
+ {
+ "id": "1978",
+ "temp_id": "5440523",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "196945.0000"
+ },
+ {
+ "id": "1979",
+ "temp_id": "5440524",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "293121.0000"
+ },
+ {
+ "id": "1980",
+ "temp_id": "5440525",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "387798.0000"
+ },
+ {
+ "id": "1981",
+ "temp_id": "5440526",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "481000.0000"
+ },
+ {
+ "id": "1982",
+ "temp_id": "5440527",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "572748.0000"
+ },
+ {
+ "id": "1983",
+ "temp_id": "5440528",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "663067.0000"
+ },
+ {
+ "id": "1984",
+ "temp_id": "5440529",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "751978.0000"
+ },
+ {
+ "id": "1985",
+ "temp_id": "5440530",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "839503.0000"
+ },
+ {
+ "id": "1986",
+ "temp_id": "5440531",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "925663.0000"
+ },
+ {
+ "id": "1987",
+ "temp_id": "5440532",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1010481.0000"
+ },
+ {
+ "id": "1988",
+ "temp_id": "5440533",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1093977.0000"
+ },
+ {
+ "id": "1989",
+ "temp_id": "5440534",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1176172.0000"
+ },
+ {
+ "id": "1990",
+ "temp_id": "5440535",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1257085.0000"
+ },
+ {
+ "id": "1991",
+ "temp_id": "5440536",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1336737.0000"
+ },
+ {
+ "id": "1992",
+ "temp_id": "5440537",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1415148.0000"
+ },
+ {
+ "id": "1993",
+ "temp_id": "5440538",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "83",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1492337.0000"
+ },
+ {
+ "id": "1994",
+ "temp_id": "5440539",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1995",
+ "temp_id": "5440540",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1996",
+ "temp_id": "5440541",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1997",
+ "temp_id": "5440542",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1998",
+ "temp_id": "5440543",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "1999",
+ "temp_id": "5440544",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2000",
+ "temp_id": "5440545",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2001",
+ "temp_id": "5440546",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2002",
+ "temp_id": "5440547",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2003",
+ "temp_id": "5440548",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2004",
+ "temp_id": "5440549",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2005",
+ "temp_id": "5440550",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2006",
+ "temp_id": "5440551",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2007",
+ "temp_id": "5440552",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "52000.0000"
+ },
+ {
+ "id": "2008",
+ "temp_id": "5440553",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2009",
+ "temp_id": "5440554",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2010",
+ "temp_id": "5440555",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2011",
+ "temp_id": "5440556",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2012",
+ "temp_id": "5440557",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2013",
+ "temp_id": "5440558",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2014",
+ "temp_id": "5440559",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2015",
+ "temp_id": "5440560",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2016",
+ "temp_id": "5440561",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2017",
+ "temp_id": "5440562",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "84",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2018",
+ "temp_id": "5440563",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2019",
+ "temp_id": "5440564",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2020",
+ "temp_id": "5440565",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2021",
+ "temp_id": "5440566",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2022",
+ "temp_id": "5440567",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2023",
+ "temp_id": "5440568",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2024",
+ "temp_id": "5440569",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2025",
+ "temp_id": "5440570",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2026",
+ "temp_id": "5440571",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2027",
+ "temp_id": "5440572",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2028",
+ "temp_id": "5440573",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2029",
+ "temp_id": "5440574",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2030",
+ "temp_id": "5440575",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2031",
+ "temp_id": "5440576",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "40205.0000"
+ },
+ {
+ "id": "2032",
+ "temp_id": "5440577",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2033",
+ "temp_id": "5440578",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2034",
+ "temp_id": "5440579",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2035",
+ "temp_id": "5440580",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2036",
+ "temp_id": "5440581",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2037",
+ "temp_id": "5440582",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2038",
+ "temp_id": "5440583",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2039",
+ "temp_id": "5440584",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2040",
+ "temp_id": "5440585",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2041",
+ "temp_id": "5440586",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "85",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2042",
+ "temp_id": "5440587",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2019-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2043",
+ "temp_id": "5440588",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2019-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2044",
+ "temp_id": "5440589",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2019-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2045",
+ "temp_id": "5440590",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2019-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2046",
+ "temp_id": "5440591",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2047",
+ "temp_id": "5440592",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2048",
+ "temp_id": "5440593",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2049",
+ "temp_id": "5440594",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "75550.0000"
+ },
+ {
+ "id": "2050",
+ "temp_id": "5440595",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "149980.0000"
+ },
+ {
+ "id": "2051",
+ "temp_id": "5440596",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "223295.0000"
+ },
+ {
+ "id": "2052",
+ "temp_id": "5440597",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2053",
+ "temp_id": "5440598",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "366645.0000"
+ },
+ {
+ "id": "2054",
+ "temp_id": "5440599",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "436714.0000"
+ },
+ {
+ "id": "2055",
+ "temp_id": "5440600",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2056",
+ "temp_id": "5440601",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "573718.0000"
+ },
+ {
+ "id": "2057",
+ "temp_id": "5440602",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "640685.0000"
+ },
+ {
+ "id": "2058",
+ "temp_id": "5440603",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "706649.0000"
+ },
+ {
+ "id": "2059",
+ "temp_id": "5440604",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "771624.0000"
+ },
+ {
+ "id": "2060",
+ "temp_id": "5440605",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2061",
+ "temp_id": "5440606",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "898669.0000"
+ },
+ {
+ "id": "2062",
+ "temp_id": "5440607",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "960768.0000"
+ },
+ {
+ "id": "2063",
+ "temp_id": "5440608",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2064",
+ "temp_id": "5440609",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1082189.0000"
+ },
+ {
+ "id": "2065",
+ "temp_id": "5440610",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "86",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1141539.0000"
+ },
+ {
+ "id": "2066",
+ "temp_id": "5440611",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2242160.0000"
+ },
+ {
+ "id": "2067",
+ "temp_id": "5440612",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2297469.0000"
+ },
+ {
+ "id": "2068",
+ "temp_id": "5440613",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2351893.0000"
+ },
+ {
+ "id": "2069",
+ "temp_id": "5440614",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2405447.0000"
+ },
+ {
+ "id": "2070",
+ "temp_id": "5440615",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2071",
+ "temp_id": "5440616",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2510000.0000"
+ },
+ {
+ "id": "2072",
+ "temp_id": "5440617",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "2510000.0000"
+ },
+ {
+ "id": "2073",
+ "temp_id": "5440618",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2074",
+ "temp_id": "5440619",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2075",
+ "temp_id": "5440620",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2076",
+ "temp_id": "5440621",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2077",
+ "temp_id": "5440622",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2078",
+ "temp_id": "5440623",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2079",
+ "temp_id": "5440624",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2080",
+ "temp_id": "5440625",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2081",
+ "temp_id": "5440626",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2082",
+ "temp_id": "5440627",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2083",
+ "temp_id": "5440628",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2084",
+ "temp_id": "5440629",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2085",
+ "temp_id": "5440630",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2086",
+ "temp_id": "5440631",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2087",
+ "temp_id": "5440632",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2088",
+ "temp_id": "5440633",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2089",
+ "temp_id": "5440634",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "87",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2090",
+ "temp_id": "5440635",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "882130.0000"
+ },
+ {
+ "id": "2091",
+ "temp_id": "5440636",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "882130.0000"
+ },
+ {
+ "id": "2092",
+ "temp_id": "5440637",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "942815.0000"
+ },
+ {
+ "id": "2093",
+ "temp_id": "5440638",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2094",
+ "temp_id": "5440639",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2095",
+ "temp_id": "5440640",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2096",
+ "temp_id": "5440641",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2097",
+ "temp_id": "5440642",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2098",
+ "temp_id": "5440643",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2099",
+ "temp_id": "5440644",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2100",
+ "temp_id": "5440645",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2101",
+ "temp_id": "5440646",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2102",
+ "temp_id": "5440647",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "0 Day Past",
+ "CFHistory24MonthsOSAmount": "1002554.0000"
+ },
+ {
+ "id": "2103",
+ "temp_id": "5440648",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2104",
+ "temp_id": "5440649",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2105",
+ "temp_id": "5440650",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2106",
+ "temp_id": "5440651",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2107",
+ "temp_id": "5440652",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2108",
+ "temp_id": "5440653",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2109",
+ "temp_id": "5440654",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2110",
+ "temp_id": "5440655",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2111",
+ "temp_id": "5440656",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2112",
+ "temp_id": "5440657",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2113",
+ "temp_id": "5440658",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "88",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2114",
+ "temp_id": "5440659",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "465013.0000"
+ },
+ {
+ "id": "2115",
+ "temp_id": "5440660",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "484652.0000"
+ },
+ {
+ "id": "2116",
+ "temp_id": "5440661",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "503985.0000"
+ },
+ {
+ "id": "2117",
+ "temp_id": "5440662",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "523017.0000"
+ },
+ {
+ "id": "2118",
+ "temp_id": "5440663",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "541753.0000"
+ },
+ {
+ "id": "2119",
+ "temp_id": "5440664",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "560197.0000"
+ },
+ {
+ "id": "2120",
+ "temp_id": "5440665",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "578354.0000"
+ },
+ {
+ "id": "2121",
+ "temp_id": "5440666",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "596228.0000"
+ },
+ {
+ "id": "2122",
+ "temp_id": "5440667",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "613824.0000"
+ },
+ {
+ "id": "2123",
+ "temp_id": "5440668",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "631146.0000"
+ },
+ {
+ "id": "2124",
+ "temp_id": "5440669",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "648198.0000"
+ },
+ {
+ "id": "2125",
+ "temp_id": "5440670",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "664985.0000"
+ },
+ {
+ "id": "2126",
+ "temp_id": "5440671",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "681511.0000"
+ },
+ {
+ "id": "2127",
+ "temp_id": "5440672",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "697779.0000"
+ },
+ {
+ "id": "2128",
+ "temp_id": "5440673",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "713794.0000"
+ },
+ {
+ "id": "2129",
+ "temp_id": "5440674",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "729560.0000"
+ },
+ {
+ "id": "2130",
+ "temp_id": "5440675",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "750000.0000"
+ },
+ {
+ "id": "2131",
+ "temp_id": "5440676",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2132",
+ "temp_id": "5440677",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2133",
+ "temp_id": "5440678",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2134",
+ "temp_id": "5440679",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2135",
+ "temp_id": "5440680",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2136",
+ "temp_id": "5440681",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2137",
+ "temp_id": "5440682",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "89",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2138",
+ "temp_id": "5440683",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2139",
+ "temp_id": "5440684",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "963178.0000"
+ },
+ {
+ "id": "2140",
+ "temp_id": "5440685",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1001993.0000"
+ },
+ {
+ "id": "2141",
+ "temp_id": "5440686",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1040725.0000"
+ },
+ {
+ "id": "2142",
+ "temp_id": "5440687",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1078289.0000"
+ },
+ {
+ "id": "2143",
+ "temp_id": "5440688",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1116974.0000"
+ },
+ {
+ "id": "2144",
+ "temp_id": "5440689",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2018-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1153346.0000"
+ },
+ {
+ "id": "2145",
+ "temp_id": "5440690",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1189049.0000"
+ },
+ {
+ "id": "2146",
+ "temp_id": "5440691",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1224904.0000"
+ },
+ {
+ "id": "2147",
+ "temp_id": "5440692",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1259562.0000"
+ },
+ {
+ "id": "2148",
+ "temp_id": "5440693",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1294333.0000"
+ },
+ {
+ "id": "2149",
+ "temp_id": "5440694",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1327889.0000"
+ },
+ {
+ "id": "2150",
+ "temp_id": "5440695",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1360912.0000"
+ },
+ {
+ "id": "2151",
+ "temp_id": "5440696",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1394108.0000"
+ },
+ {
+ "id": "2152",
+ "temp_id": "5440697",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2153",
+ "temp_id": "5440698",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1426079.0000"
+ },
+ {
+ "id": "2154",
+ "temp_id": "5440699",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500000.0000"
+ },
+ {
+ "id": "2155",
+ "temp_id": "5440700",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2156",
+ "temp_id": "5440701",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2157",
+ "temp_id": "5440702",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2158",
+ "temp_id": "5440703",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2159",
+ "temp_id": "5440704",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2160",
+ "temp_id": "5440705",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2161",
+ "temp_id": "5440706",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "90",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2162",
+ "temp_id": "5440707",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2163",
+ "temp_id": "5440708",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2164",
+ "temp_id": "5440709",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "879677.0000"
+ },
+ {
+ "id": "2165",
+ "temp_id": "5440710",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "940470.0000"
+ },
+ {
+ "id": "2166",
+ "temp_id": "5440711",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "999804.0000"
+ },
+ {
+ "id": "2167",
+ "temp_id": "5440712",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1059832.0000"
+ },
+ {
+ "id": "2168",
+ "temp_id": "5440713",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2017-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1117256.0000"
+ },
+ {
+ "id": "2169",
+ "temp_id": "5440714",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1173762.0000"
+ },
+ {
+ "id": "2170",
+ "temp_id": "5440715",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1229999.0000"
+ },
+ {
+ "id": "2171",
+ "temp_id": "5440716",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1286501.0000"
+ },
+ {
+ "id": "2172",
+ "temp_id": "5440717",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1341019.0000"
+ },
+ {
+ "id": "2173",
+ "temp_id": "5440718",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1416632.0000"
+ },
+ {
+ "id": "2174",
+ "temp_id": "5440719",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-07-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1445630.0000"
+ },
+ {
+ "id": "2175",
+ "temp_id": "5440720",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-06-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "Standard",
+ "CFHistory24MonthsOSAmount": "1500000.0000"
+ },
+ {
+ "id": "2176",
+ "temp_id": "5440721",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-05-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2177",
+ "temp_id": "5440722",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-04-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2178",
+ "temp_id": "5440723",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-03-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2179",
+ "temp_id": "5440724",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-02-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2180",
+ "temp_id": "5440725",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2016-01-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2181",
+ "temp_id": "5440726",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-12-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2182",
+ "temp_id": "5440727",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-11-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2183",
+ "temp_id": "5440728",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-10-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2184",
+ "temp_id": "5440729",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-09-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ },
+ {
+ "id": "2185",
+ "temp_id": "5440730",
+ "ApplicationRefno": "202201111930347000000",
+ "BorrowerCurrentDetailsID": "91",
+ "CFHistory24Monthsmonth": "2015-08-01 00:00:00",
+ "CFHistory24MonthsACorDPD": "NULL",
+ "CFHistory24MonthsOSAmount": "0.0000"
+ }
+ ],
+ "com_enquiry_details": [
+ {
+ "id": "146",
+ "temp_id": "94416",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-11 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "2000000.0"
+ },
+ {
+ "id": "147",
+ "temp_id": "94417",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-10 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "1000.0"
+ },
+ {
+ "id": "148",
+ "temp_id": "94418",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-10 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "5000000.0"
+ },
+ {
+ "id": "149",
+ "temp_id": "94419",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-05 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "3060000.0"
+ },
+ {
+ "id": "150",
+ "temp_id": "94420",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-04 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "2500000.0"
+ },
+ {
+ "id": "151",
+ "temp_id": "94421",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-03 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "3500000.0"
+ },
+ {
+ "id": "152",
+ "temp_id": "94422",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-03 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Unsecured business l",
+ "EnquiryDetailsEnquiryAmt": "1000000.0"
+ },
+ {
+ "id": "153",
+ "temp_id": "94423",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2022-01-03 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Others",
+ "EnquiryDetailsEnquiryAmt": "2500000.0"
+ },
+ {
+ "id": "154",
+ "temp_id": "94424",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2021-12-30 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Medium term loan (pe",
+ "EnquiryDetailsEnquiryAmt": "1000000.0"
+ },
+ {
+ "id": "155",
+ "temp_id": "94425",
+ "ApplicationRefno": "2.022011031416807e+20",
+ "EnquiryDetailsEnquiryDt": "2021-12-30 00:00:00",
+ "EnquiryDetailsEnquiryPurpose": "Medium term loan (pe",
+ "EnquiryDetailsEnquiryAmt": "1000000.0"
+ }
+ ],
+ "com_borrower_details": [
+ {
+ "id": "1",
+ "temp_id": "6605",
+ "ApplicationRefno": "202201111930347000000",
+ "EnqInfoBorrowerName": "AAKASH POLYTECH PRIVATE LIMITED"
+ }
+ ]
+ },
+ "masters": {
+ "dpd_month_buckets": [
+ {
+ "id": "1",
+ "name": "0+",
+ "range_from": "1",
+ "range_to": "29",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 11:10:13.110000",
+ "updatedon": "2022-04-15 11:10:13.110000"
+ },
+ {
+ "id": "2",
+ "name": "30+",
+ "range_from": "30",
+ "range_to": "59",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ },
+ {
+ "id": "3",
+ "name": "60+",
+ "range_from": "60",
+ "range_to": "89",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ },
+ {
+ "id": "4",
+ "name": "90+",
+ "range_from": "90",
+ "range_to": "179",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ },
+ {
+ "id": "5",
+ "name": "180+",
+ "range_from": "None",
+ "range_to": "180",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ }
+ ],
+ "sanction_summary_month_buckets": [
+ {
+ "id": "6",
+ "name": "1",
+ "range_from": "1",
+ "range_to": "1",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "7",
+ "name": "2-3",
+ "range_from": "2",
+ "range_to": "3",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "8",
+ "name": "4-6",
+ "range_from": "4",
+ "range_to": "6",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "9",
+ "name": "7-12",
+ "range_from": "7",
+ "range_to": "12",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "10",
+ "name": "13-24",
+ "range_from": "13",
+ "range_to": "24",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "11",
+ "name": "26-36",
+ "range_from": "25",
+ "range_to": "36",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "12",
+ "name": ">36",
+ "range_from": "None",
+ "range_to": "36",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ }
+ ],
+ "enquiry_summary_month_buckets": [
+ {
+ "id": "13",
+ "name": "1",
+ "range_from": "1",
+ "range_to": "1",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "14",
+ "name": "2-3",
+ "range_from": "2",
+ "range_to": "3",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "15",
+ "name": "4-6",
+ "range_from": "4",
+ "range_to": "6",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "16",
+ "name": "7-12",
+ "range_from": "7",
+ "range_to": "12",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "17",
+ "name": "13-24",
+ "range_from": "13",
+ "range_to": "24",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "18",
+ "name": "26-36",
+ "range_from": "25",
+ "range_to": "36",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "19",
+ "name": ">36",
+ "range_from": "None",
+ "range_to": "36",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ }
+ ]
+ }
+ }
\ No newline at end of file
diff --git a/consumer logic - done b/consumer logic - done
new file mode 100644
index 0000000..7e5007d
--- /dev/null
+++ b/consumer logic - done
@@ -0,0 +1,11 @@
+consumer logic - done
+commercial logic - done
+
+o/p insertion logic - have to do
+ los id
+ refeence no
+------------------------------
+general
+ - logs
+ - aysnc functions
+ - queue server method
\ No newline at end of file
diff --git a/data.json b/data.json
new file mode 100644
index 0000000..dd91161
--- /dev/null
+++ b/data.json
@@ -0,0 +1,25198 @@
+
+ {
+ "consumer_cibil_rawdata": {
+ "consumer_borrower_details": [
+ {
+ "id": 5,
+ "BDeatailsID": 17886,
+ "MemberReferenceNumber": "202201121116395000000",
+ "EnquiryMemberUserID": "NB70068888_C2C ",
+ "SubjectReturnCode": 1,
+ "EnquiryControlNumber": "4336500924",
+ "DateTimeProcessed": "1970-01-01",
+ "ConsumerNameField1": "MONIKA SINGLA SUBODH KUMAR",
+ "ConsumerNameField2": "THAPA",
+ "ConsumerNameField3": null,
+ "ConsumerNameField4": null,
+ "ConsumerNameField5": null,
+ "DateofBirth": "1970-01-01",
+ "Gender": "Female",
+ "DateofEntryforErrorCode": null,
+ "ErrorSegmentTag": null,
+ "ErrorCode": null,
+ "DateofEntryforCIBILRemarksCode": null,
+ "CIBILRemarks": null,
+ "DateofEntryforErrorDisputeRemarksCode": null,
+ "ErrorDisputeRemarksCode": null,
+ "ErrorDisputeRemarksCode2": null,
+ "AccountType": "Auto Loan (Pers",
+ "DateReportedAndCertified": "1970-01-01",
+ "Occupation": "Self Employed",
+ "Income": "150001.00",
+ "NetGrossIncomeIndicator": "Gross Income",
+ "MonthlyAnnualIncomeIndicator": "Annual",
+ "DateOfEntryforErrorCode1": null,
+ "ErrorCode1": null,
+ "DateOfEntryForCIBILRemarksCode1": null,
+ "CIBILRemarksCode": null,
+ "DateOfEntryForErrorDisputeRemarksCode1": null,
+ "ErrorDisputeRemarksCode1": null,
+ "ATErrorDisputeRemarksCode1": null,
+ "ATErrorDisputeRemarksCode2": null,
+ "DateOfEntry": null,
+ "DisputeRemarksLine": ";;;;;",
+ "EMailID": "ACCOUNTSHEAD@HARASHAPHARMA.COM;ACCOUNTSHEAD@HARSHPHARMA.COM;HO@HARASHAPHARMA.COM;MANAV@HARASHAPHARMA.COM;",
+ "AccountNumber": null,
+ "createdAt": "2022-03-25 10:39:58.4950000 +0",
+ "updatedAt": "2022-03-25 10:39:58.4950000 +0",
+ "createdby": null,
+ "updatedby": null
+ },
+ {
+ "id": 10,
+ "BDeatailsID": 17886,
+ "MemberReferenceNumber": "202201121116395000000",
+ "EnquiryMemberUserID": "NB70068888_C2C ",
+ "SubjectReturnCode": 1,
+ "EnquiryControlNumber": "4336500924",
+ "DateTimeProcessed": "1970-01-01",
+ "ConsumerNameField1": "MONIKA SINGLA SUBODH KUMAR",
+ "ConsumerNameField2": "THAPA",
+ "ConsumerNameField3": "NULL",
+ "ConsumerNameField4": "NULL",
+ "ConsumerNameField5": "NULL",
+ "DateofBirth": "1970-01-01",
+ "Gender": "Female",
+ "DateofEntryforErrorCode": null,
+ "ErrorSegmentTag": null,
+ "ErrorCode": null,
+ "DateofEntryforCIBILRemarksCode": null,
+ "CIBILRemarks": null,
+ "DateofEntryforErrorDisputeRemarksCode": null,
+ "ErrorDisputeRemarksCode": null,
+ "ErrorDisputeRemarksCode2": null,
+ "AccountType": "Auto Loan (Pers",
+ "DateReportedAndCertified": "1970-01-01",
+ "Occupation": "Self Employed",
+ "Income": "150001.00",
+ "NetGrossIncomeIndicator": "Gross Income",
+ "MonthlyAnnualIncomeIndicator": "Annual",
+ "DateOfEntryforErrorCode1": null,
+ "ErrorCode1": null,
+ "DateOfEntryForCIBILRemarksCode1": null,
+ "CIBILRemarksCode": null,
+ "DateOfEntryForErrorDisputeRemarksCode1": null,
+ "ErrorDisputeRemarksCode1": null,
+ "ATErrorDisputeRemarksCode1": null,
+ "ATErrorDisputeRemarksCode2": null,
+ "DateOfEntry": null,
+ "DisputeRemarksLine": ";;;;;",
+ "EMailID": "ACCOUNTSHEAD@HARASHAPHARMA.COM;ACCOUNTSHEAD@HARSHPHARMA.COM;HO@HARASHAPHARMA.COM;MANAV@HARASHAPHARMA.COM;",
+ "AccountNumber": null,
+ "createdAt": "2022-03-26 17:47:37.3530000 +0",
+ "updatedAt": "2022-03-26 17:47:37.3530000 +0",
+ "createdby": null,
+ "updatedby": null
+ },
+ {
+ "id": 15,
+ "BDeatailsID": 17886,
+ "MemberReferenceNumber": "202201121116395000000",
+ "EnquiryMemberUserID": "NB70068888_C2C ",
+ "SubjectReturnCode": 1,
+ "EnquiryControlNumber": "4336500924",
+ "DateTimeProcessed": "1970-01-01",
+ "ConsumerNameField1": "MONIKA SINGLA SUBODH KUMAR",
+ "ConsumerNameField2": "THAPA",
+ "ConsumerNameField3": "NULL",
+ "ConsumerNameField4": "NULL",
+ "ConsumerNameField5": "NULL",
+ "DateofBirth": "1970-01-01",
+ "Gender": "Female",
+ "DateofEntryforErrorCode": null,
+ "ErrorSegmentTag": null,
+ "ErrorCode": null,
+ "DateofEntryforCIBILRemarksCode": null,
+ "CIBILRemarks": null,
+ "DateofEntryforErrorDisputeRemarksCode": null,
+ "ErrorDisputeRemarksCode": null,
+ "ErrorDisputeRemarksCode2": null,
+ "AccountType": "Auto Loan (Pers",
+ "DateReportedAndCertified": "1970-01-01",
+ "Occupation": "Self Employed",
+ "Income": "150001.00",
+ "NetGrossIncomeIndicator": "Gross Income",
+ "MonthlyAnnualIncomeIndicator": "Annual",
+ "DateOfEntryforErrorCode1": null,
+ "ErrorCode1": null,
+ "DateOfEntryForCIBILRemarksCode1": null,
+ "CIBILRemarksCode": null,
+ "DateOfEntryForErrorDisputeRemarksCode1": null,
+ "ErrorDisputeRemarksCode1": null,
+ "ATErrorDisputeRemarksCode1": null,
+ "ATErrorDisputeRemarksCode2": null,
+ "DateOfEntry": null,
+ "DisputeRemarksLine": ";;;;;",
+ "EMailID": "ACCOUNTSHEAD@HARASHAPHARMA.COM;ACCOUNTSHEAD@HARSHPHARMA.COM;HO@HARASHAPHARMA.COM;MANAV@HARASHAPHARMA.COM;",
+ "AccountNumber": null,
+ "createdAt": "2022-03-28 03:56:10.9120000 +0",
+ "updatedAt": "2022-03-28 03:56:10.9120000 +0",
+ "createdby": null,
+ "updatedby": null
+ }
+ ],
+ "account_transaction_details": [
+ {
+ "id": "159",
+ "AccountTranDetailsID": "388842",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2021-02-10",
+ "DateOfLastPayment": "None",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-12-31",
+ "HighCreditSanctionedAmount": "15000000.0000",
+ "CurrentBalance": "13168878.0000",
+ "AmountOverdue": "86764.0000",
+ "PaymentHistory1": "029STDSTDSTDSTDSTDSTDSTDSTDSTDSTD",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-12-01",
+ "PaymentHistoryEndDate": "2021-02-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "23154591",
+ "TypeOfCollateral": "Property",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "8.0000",
+ "RepaymentTenure": "240.0000",
+ "EMIAmount": "109602.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "160",
+ "AccountTranDetailsID": "388843",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Personal Loan",
+ "AccountType": "Personal Loan",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2019-12-20",
+ "DateOfLastPayment": "2021-12-08",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-12-31",
+ "HighCreditSanctionedAmount": "1000000.0000",
+ "CurrentBalance": "553820.0000",
+ "AmountOverdue": "43709.0000",
+ "PaymentHistory1": "027057027026027000000000000000000000000000000000000XXX",
+ "PaymentHistory2": "XXXXXX000XXXXXX000000",
+ "PaymentHistoryStartDate": "2021-12-01",
+ "PaymentHistoryEndDate": "2019-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "40.0000",
+ "EMIAmount": "36656.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "36656.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "161",
+ "AccountTranDetailsID": "388844",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Auto Loan (Personal)",
+ "AccountType": "Auto Loan (Personal)",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2021-11-10",
+ "DateOfLastPayment": "2021-12-10",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2022-01-10",
+ "HighCreditSanctionedAmount": "1454000.0000",
+ "CurrentBalance": "1427879.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STD000000",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2022-01-01",
+ "PaymentHistoryEndDate": "2021-11-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "Property",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "7.8500",
+ "RepaymentTenure": "84.0000",
+ "EMIAmount": "22554.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "162",
+ "AccountTranDetailsID": "388845",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2021-06-22",
+ "DateOfLastPayment": "2021-11-18",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "30000000.0000",
+ "CurrentBalance": "25313967.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2021-06-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "235.0000",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "971562.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "163",
+ "AccountTranDetailsID": "388846",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Auto Loan (Personal)",
+ "AccountType": "Auto Loan (Personal)",
+ "OwnershipIndicator": "Guarantor",
+ "DateOpenedDisbursed": "2021-06-02",
+ "DateOfLastPayment": "2021-12-20",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-12-31",
+ "HighCreditSanctionedAmount": "2190000.0000",
+ "CurrentBalance": "2081678.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-12-01",
+ "PaymentHistoryEndDate": "2021-06-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "2577086",
+ "TypeOfCollateral": "Property",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "8.0000",
+ "RepaymentTenure": "84.0000",
+ "EMIAmount": "33591.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "34074.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "164",
+ "AccountTranDetailsID": "388847",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2021-01-31",
+ "DateOfLastPayment": "2021-04-08",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-04-30",
+ "HighCreditSanctionedAmount": "3000000.0000",
+ "CurrentBalance": "2875037.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-04-01",
+ "PaymentHistoryEndDate": "2021-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "19.5000",
+ "RepaymentTenure": "36.0000",
+ "EMIAmount": "110728.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "110728.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "165",
+ "AccountTranDetailsID": "388848",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "MONEYWISE",
+ "AccountNumber": "Business Loan - Unsecured",
+ "AccountType": "Business Loan - Unsecured",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2021-01-31",
+ "DateOfLastPayment": "None",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "2034449.0000",
+ "CurrentBalance": "1607824.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXX000000000000000000000000000",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2021-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "166",
+ "AccountTranDetailsID": "388849",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan - Unsecured",
+ "AccountType": "Business Loan - Unsecured",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2021-01-31",
+ "DateOfLastPayment": "2021-11-05",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "1520000.0000",
+ "CurrentBalance": "1019285.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2021-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "167",
+ "AccountTranDetailsID": "388850",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan - Unsecured",
+ "AccountType": "Business Loan - Unsecured",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2021-01-31",
+ "DateOfLastPayment": "2021-11-03",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "3021670.0000",
+ "CurrentBalance": "2414435.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTD",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2021-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "36.0000",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "168",
+ "AccountTranDetailsID": "388851",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2021-01-22",
+ "DateOfLastPayment": "2021-11-02",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "4080000.0000",
+ "CurrentBalance": "3244806.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2021-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "No Collateral",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "36.0000",
+ "EMIAmount": "145464.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "1309176.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "169",
+ "AccountTranDetailsID": "388852",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2020-11-26",
+ "DateOfLastPayment": "2021-12-24",
+ "DateClosed": "2021-12-24",
+ "DateReportedAndCertified": "2021-12-31",
+ "HighCreditSanctionedAmount": "5250000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-12-01",
+ "PaymentHistoryEndDate": "2021-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "Property",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "8.0000",
+ "RepaymentTenure": "347.0000",
+ "EMIAmount": "27373.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "1304229.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "170",
+ "AccountTranDetailsID": "388853",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Other",
+ "AccountType": "Other",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2020-11-16",
+ "DateOfLastPayment": "None",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2020-12-31",
+ "HighCreditSanctionedAmount": "370550.0000",
+ "CurrentBalance": "370550.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDSTD",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2020-12-01",
+ "PaymentHistoryEndDate": "2020-11-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "171",
+ "AccountTranDetailsID": "388854",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "GECL Loan Unsecured",
+ "AccountType": "GECL Loan Unsecured",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2020-09-19",
+ "DateOfLastPayment": "None",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "490670.0000",
+ "CurrentBalance": "468450.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2020-09-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "No Collateral",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "16770.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "16770.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "172",
+ "AccountTranDetailsID": "388855",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan - Unsecured",
+ "AccountType": "Business Loan - Unsecured",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2020-08-31",
+ "DateOfLastPayment": "2021-11-06",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "292000.0000",
+ "CurrentBalance": "278777.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2020-08-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "173",
+ "AccountTranDetailsID": "388856",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2020-04-21",
+ "DateOfLastPayment": "2020-08-11",
+ "DateClosed": "2020-08-11",
+ "DateReportedAndCertified": "2020-08-31",
+ "HighCreditSanctionedAmount": "50000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDSTDSTDSTDSTD",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2020-08-01",
+ "PaymentHistoryEndDate": "2020-04-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "12.0000",
+ "EMIAmount": "4732.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "174",
+ "AccountTranDetailsID": "388857",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2019-12-31",
+ "DateOfLastPayment": "2021-11-06",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "1515825.0000",
+ "CurrentBalance": "279222.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2019-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "175",
+ "AccountTranDetailsID": "388858",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Guarantor",
+ "DateOpenedDisbursed": "2019-12-20",
+ "DateOfLastPayment": "None",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "1011012.0000",
+ "CurrentBalance": "358336.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2019-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "18.5000",
+ "RepaymentTenure": "30.0000",
+ "EMIAmount": "50719.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "176",
+ "AccountTranDetailsID": "388859",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan - Unsecured",
+ "AccountType": "Business Loan - Unsecured",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2019-12-10",
+ "DateOfLastPayment": "None",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-07-31",
+ "HighCreditSanctionedAmount": "1512085.0000",
+ "CurrentBalance": "895651.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000000000000000XXX000000000000000000000XXX000000000000",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-07-01",
+ "PaymentHistoryEndDate": "2019-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "56968.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "177",
+ "AccountTranDetailsID": "388860",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2019-12-07",
+ "DateOfLastPayment": "2021-11-06",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "1500000.0000",
+ "CurrentBalance": "1010492.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "25024",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2019-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "43283.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "178",
+ "AccountTranDetailsID": "388861",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan - Unsecured",
+ "AccountType": "Business Loan - Unsecured",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2019-11-30",
+ "DateOfLastPayment": "2021-11-06",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "1525884.0000",
+ "CurrentBalance": "873568.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2019-11-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "179",
+ "AccountTranDetailsID": "388862",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Guarantor",
+ "DateOpenedDisbursed": "2019-11-30",
+ "DateOfLastPayment": "2021-11-01",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "1500000.0000",
+ "CurrentBalance": "745379.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2019-11-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "180",
+ "AccountTranDetailsID": "388863",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "AccountType": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2019-11-29",
+ "DateOfLastPayment": "None",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "1500000.0000",
+ "CurrentBalance": "769534.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2019-11-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "No Collateral",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "56282.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "56282.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "181",
+ "AccountTranDetailsID": "388864",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan - Unsecured",
+ "AccountType": "Business Loan - Unsecured",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2019-11-29",
+ "DateOfLastPayment": "2021-10-04",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-10-31",
+ "HighCreditSanctionedAmount": "3139804.0000",
+ "CurrentBalance": "1771791.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "59000000",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-10-01",
+ "PaymentHistoryEndDate": "2020-02-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "182",
+ "AccountTranDetailsID": "388865",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2018-10-17",
+ "DateOfLastPayment": "2021-01-31",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-01-31",
+ "HighCreditSanctionedAmount": "2000000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "000000000000000000000XXXXXX000",
+ "PaymentHistoryStartDate": "2021-01-01",
+ "PaymentHistoryEndDate": "2018-10-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "19.0000",
+ "RepaymentTenure": "26.0000",
+ "EMIAmount": "73313.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "767676.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "183",
+ "AccountTranDetailsID": "388866",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "AccountType": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2018-10-05",
+ "DateOfLastPayment": "None",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "1600000.0000",
+ "CurrentBalance": "182983.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "000000000000000000000000000000000000000000XXXXXX000XXX",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2018-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "No Collateral",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "36.0000",
+ "EMIAmount": "61981.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "62988.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "184",
+ "AccountTranDetailsID": "388867",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2018-07-04",
+ "DateOfLastPayment": "2021-02-11",
+ "DateClosed": "2021-02-19",
+ "DateReportedAndCertified": "2021-05-31",
+ "HighCreditSanctionedAmount": "15000000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000STDSTDSTD000000000000000087000000000000000000000000",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-05-01",
+ "PaymentHistoryEndDate": "2018-07-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "208.0000",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "4435865.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "185",
+ "AccountTranDetailsID": "388868",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2018-05-22",
+ "DateOfLastPayment": "2021-06-04",
+ "DateClosed": "2021-06-04",
+ "DateReportedAndCertified": "2021-06-30",
+ "HighCreditSanctionedAmount": "550000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-06-01",
+ "PaymentHistoryEndDate": "2018-07-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "19582.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "186",
+ "AccountTranDetailsID": "388869",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Consumer Loan",
+ "AccountType": "Consumer Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2017-12-08",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2020-07-30",
+ "DateReportedAndCertified": "2020-07-31",
+ "HighCreditSanctionedAmount": "500000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTD",
+ "PaymentHistory2": "STDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTD",
+ "PaymentHistoryStartDate": "2020-07-01",
+ "PaymentHistoryEndDate": "2017-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "63.0000",
+ "EMIAmount": "10465.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "187",
+ "AccountTranDetailsID": "388870",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2017-11-17",
+ "DateOfLastPayment": "2021-06-16",
+ "DateClosed": "2021-06-16",
+ "DateReportedAndCertified": "2021-06-30",
+ "HighCreditSanctionedAmount": "4000000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2021-06-01",
+ "PaymentHistoryEndDate": "2021-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "Property",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "7.0000",
+ "RepaymentTenure": "307.0000",
+ "EMIAmount": "5520.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "188",
+ "AccountTranDetailsID": "388871",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2017-08-16",
+ "DateOfLastPayment": "2021-12-21",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-12-31",
+ "HighCreditSanctionedAmount": "69328.0000",
+ "CurrentBalance": "11599.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "9000000000000000000",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-12-01",
+ "PaymentHistoryEndDate": "2019-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "55000.0000",
+ "CashLimit": "20000.0000",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "5399.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "189",
+ "AccountTranDetailsID": "388872",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Consumer Loan",
+ "AccountType": "Consumer Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2017-05-18",
+ "DateOfLastPayment": "2018-08-05",
+ "DateClosed": "2018-12-17",
+ "DateReportedAndCertified": "2021-03-31",
+ "HighCreditSanctionedAmount": "84990.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistory2": "XXXXXX000000000000000000000000000000000000000000000000",
+ "PaymentHistoryStartDate": "2021-03-01",
+ "PaymentHistoryEndDate": "2018-04-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "190",
+ "AccountTranDetailsID": "388873",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Other",
+ "AccountType": "Other",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2016-11-04",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2017-11-14",
+ "DateReportedAndCertified": "2017-11-30",
+ "HighCreditSanctionedAmount": "500000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDSTDSTDSTDSTDSTDXXXSTDSTDSTDSTDSTDSTD",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2017-11-01",
+ "PaymentHistoryEndDate": "2016-11-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "60.0000",
+ "EMIAmount": "11791.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "191",
+ "AccountTranDetailsID": "388874",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2016-08-23",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2016-09-19",
+ "DateReportedAndCertified": "2016-09-30",
+ "HighCreditSanctionedAmount": "13799.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2016-09-01",
+ "PaymentHistoryEndDate": "2016-08-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "192",
+ "AccountTranDetailsID": "388875",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2016-06-04",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2021-01-24",
+ "DateReportedAndCertified": "2021-01-24",
+ "HighCreditSanctionedAmount": "None",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistory2": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistoryStartDate": "2021-01-01",
+ "PaymentHistoryEndDate": "2018-02-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "193",
+ "AccountTranDetailsID": "388876",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2016-06-04",
+ "DateOfLastPayment": "2021-10-11",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-10-31",
+ "HighCreditSanctionedAmount": "68133.0000",
+ "CurrentBalance": "13020.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000000000000000000000XXX000000000000000000000000000000",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-10-01",
+ "PaymentHistoryEndDate": "2018-11-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "85000.0000",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "100.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "194",
+ "AccountTranDetailsID": "388877",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2016-02-09",
+ "DateOfLastPayment": "2018-03-22",
+ "DateClosed": "2018-03-28",
+ "DateReportedAndCertified": "2018-03-31",
+ "HighCreditSanctionedAmount": "1666500.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "000000000000XXX000000000",
+ "PaymentHistoryStartDate": "2018-03-01",
+ "PaymentHistoryEndDate": "2016-02-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "No Collateral",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "24.0000",
+ "EMIAmount": "82772.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "2299.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "195",
+ "AccountTranDetailsID": "388878",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2015-11-27",
+ "DateOfLastPayment": "2017-11-18",
+ "DateClosed": "2017-11-21",
+ "DateReportedAndCertified": "2017-11-30",
+ "HighCreditSanctionedAmount": "6372000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2017-11-01",
+ "PaymentHistoryEndDate": "2015-11-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "196",
+ "AccountTranDetailsID": "388879",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Overdraft",
+ "AccountType": "Overdraft",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-11-26",
+ "DateOfLastPayment": "2020-10-23",
+ "DateClosed": "2020-10-23",
+ "DateReportedAndCertified": "2020-10-31",
+ "HighCreditSanctionedAmount": "1050000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTD",
+ "PaymentHistory2": "STDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTD",
+ "PaymentHistoryStartDate": "2020-10-01",
+ "PaymentHistoryEndDate": "2017-11-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "Saving Account and F",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "1.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "12695.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "197",
+ "AccountTranDetailsID": "388880",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-10-23",
+ "DateOfLastPayment": "2021-03-25",
+ "DateClosed": "2021-06-20",
+ "DateReportedAndCertified": "2021-06-30",
+ "HighCreditSanctionedAmount": "102330.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXXXXX000000000000000000000000000000000000000000000",
+ "PaymentHistory2": "000000000000000000000000XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistoryStartDate": "2021-06-01",
+ "PaymentHistoryEndDate": "2018-07-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "150000.0000",
+ "CashLimit": "37500.0000",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "24961.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "198",
+ "AccountTranDetailsID": "388881",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2015-09-15",
+ "DateOfLastPayment": "2017-12-08",
+ "DateClosed": "2017-12-13",
+ "DateReportedAndCertified": "2017-12-31",
+ "HighCreditSanctionedAmount": "1000000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2017-12-01",
+ "PaymentHistoryEndDate": "2015-09-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "199",
+ "AccountTranDetailsID": "388882",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Consumer Loan",
+ "AccountType": "Consumer Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-08-31",
+ "DateOfLastPayment": "2016-05-02",
+ "DateClosed": "2017-01-26",
+ "DateReportedAndCertified": "2021-03-31",
+ "HighCreditSanctionedAmount": "31500.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistory2": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistoryStartDate": "2021-03-01",
+ "PaymentHistoryEndDate": "2018-04-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "200",
+ "AccountTranDetailsID": "388883",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2015-08-10",
+ "DateOfLastPayment": "2017-12-08",
+ "DateClosed": "2017-12-14",
+ "DateReportedAndCertified": "2017-12-31",
+ "HighCreditSanctionedAmount": "5710865.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2017-12-01",
+ "PaymentHistoryEndDate": "2015-08-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "201",
+ "AccountTranDetailsID": "388884",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Auto Loan (Personal)",
+ "AccountType": "Auto Loan (Personal)",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-07-20",
+ "DateOfLastPayment": "2018-11-28",
+ "DateClosed": "2020-08-12",
+ "DateReportedAndCertified": "2020-08-31",
+ "HighCreditSanctionedAmount": "496000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTD",
+ "PaymentHistory2": "STDSTDSTDSTD029STDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTD",
+ "PaymentHistoryStartDate": "2020-08-01",
+ "PaymentHistoryEndDate": "2017-09-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "Property",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "8.0000",
+ "RepaymentTenure": "91.0000",
+ "EMIAmount": "8273.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "202",
+ "AccountTranDetailsID": "388885",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-05-22",
+ "DateOfLastPayment": "2018-04-23",
+ "DateClosed": "2019-12-30",
+ "DateReportedAndCertified": "2019-12-31",
+ "HighCreditSanctionedAmount": "71959.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX000000000",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2019-12-01",
+ "PaymentHistoryEndDate": "2017-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "188000.0000",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "203",
+ "AccountTranDetailsID": "388886",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-05-22",
+ "DateOfLastPayment": "2021-11-30",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-30",
+ "HighCreditSanctionedAmount": "122614.0000",
+ "CurrentBalance": "23526.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2018-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "400000.0000",
+ "CashLimit": "80000.0000",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "5000.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "204",
+ "AccountTranDetailsID": "388887",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-05-05",
+ "DateOfLastPayment": "2021-10-25",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-11-15",
+ "HighCreditSanctionedAmount": "50397.0000",
+ "CurrentBalance": "17314.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-11-01",
+ "PaymentHistoryEndDate": "2018-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "60000.0000",
+ "CashLimit": "None",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "205",
+ "AccountTranDetailsID": "388888",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-03-11",
+ "DateOfLastPayment": "2021-10-25",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2022-01-08",
+ "HighCreditSanctionedAmount": "28372.0000",
+ "CurrentBalance": "-667.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "1.2e+43",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2022-01-01",
+ "PaymentHistoryEndDate": "2019-02-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "206",
+ "AccountTranDetailsID": "388889",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-02-28",
+ "DateOfLastPayment": "2021-12-24",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2022-01-08",
+ "HighCreditSanctionedAmount": "54976.0000",
+ "CurrentBalance": "8299.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2022-01-01",
+ "PaymentHistoryEndDate": "2019-02-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "138000.0000",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "207",
+ "AccountTranDetailsID": "388890",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Gold Loan",
+ "AccountType": "Gold Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2015-02-24",
+ "DateOfLastPayment": "2015-09-01",
+ "DateClosed": "2016-09-02",
+ "DateReportedAndCertified": "2016-09-02",
+ "HighCreditSanctionedAmount": "310900.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2016-09-01",
+ "PaymentHistoryEndDate": "2015-02-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "3109.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "208",
+ "AccountTranDetailsID": "388891",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2014-11-19",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2016-07-29",
+ "DateReportedAndCertified": "2018-02-20",
+ "HighCreditSanctionedAmount": "150000.0000",
+ "CurrentBalance": "82771.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000000000000000000XXXXXX000XXX000000000XXX000000XXXXXX",
+ "PaymentHistory2": "XXX000XXXXXXXXX031XXX000031XXXXXX000000XXX000000000000",
+ "PaymentHistoryStartDate": "2018-02-01",
+ "PaymentHistoryEndDate": "2015-03-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "209",
+ "AccountTranDetailsID": "388892",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Gold Loan",
+ "AccountType": "Gold Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2014-09-15",
+ "DateOfLastPayment": "2015-02-23",
+ "DateClosed": "2015-02-23",
+ "DateReportedAndCertified": "2015-02-28",
+ "HighCreditSanctionedAmount": "300000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2015-02-01",
+ "PaymentHistoryEndDate": "2012-03-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "305742.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "210",
+ "AccountTranDetailsID": "388893",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Consumer Loan",
+ "AccountType": "Consumer Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2014-08-23",
+ "DateOfLastPayment": "2015-06-02",
+ "DateClosed": "2015-08-22",
+ "DateReportedAndCertified": "2021-03-31",
+ "HighCreditSanctionedAmount": "26000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistory2": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistoryStartDate": "2021-03-01",
+ "PaymentHistoryEndDate": "2018-04-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "211",
+ "AccountTranDetailsID": "388894",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Consumer Loan",
+ "AccountType": "Consumer Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2014-06-13",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2016-11-08",
+ "DateReportedAndCertified": "2016-11-30",
+ "HighCreditSanctionedAmount": "500000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDSTDXXXSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDXXXSTDSTDSTD",
+ "PaymentHistory2": "STDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTDSTD",
+ "PaymentHistoryStartDate": "2016-11-01",
+ "PaymentHistoryEndDate": "2014-06-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "60.0000",
+ "EMIAmount": "11859.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "212",
+ "AccountTranDetailsID": "388895",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Guarantor",
+ "DateOpenedDisbursed": "2014-04-29",
+ "DateOfLastPayment": "2015-12-08",
+ "DateClosed": "2015-12-11",
+ "DateReportedAndCertified": "2016-01-31",
+ "HighCreditSanctionedAmount": "7200000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXXXXXSTDSTDSTDSTDXXXSTDSTDSTDSTDSTDSTDSTDXXXXXXSTD",
+ "PaymentHistory2": "STDXXXSTD",
+ "PaymentHistoryStartDate": "2016-01-01",
+ "PaymentHistoryEndDate": "2014-05-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "10.2500",
+ "RepaymentTenure": "174.0000",
+ "EMIAmount": "71369.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "213",
+ "AccountTranDetailsID": "388896",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Business Loan \u2013 General",
+ "AccountType": "Business Loan \u2013 General",
+ "OwnershipIndicator": "Joint",
+ "DateOpenedDisbursed": "2014-04-27",
+ "DateOfLastPayment": "2016-02-09",
+ "DateClosed": "2016-02-09",
+ "DateReportedAndCertified": "2016-02-29",
+ "HighCreditSanctionedAmount": "1515000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2016-02-01",
+ "PaymentHistoryEndDate": "2014-04-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "No Collateral",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "24.0000",
+ "EMIAmount": "76571.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "224805.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "214",
+ "AccountTranDetailsID": "388897",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Gold Loan",
+ "AccountType": "Gold Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2014-03-07",
+ "DateOfLastPayment": "2014-09-02",
+ "DateClosed": "2014-09-15",
+ "DateReportedAndCertified": "2014-09-30",
+ "HighCreditSanctionedAmount": "325000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2014-09-01",
+ "PaymentHistoryEndDate": "2011-10-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "215",
+ "AccountTranDetailsID": "388898",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2013-12-16",
+ "DateOfLastPayment": "2019-10-30",
+ "DateClosed": "2019-11-22",
+ "DateReportedAndCertified": "2019-12-30",
+ "HighCreditSanctionedAmount": "89574.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000000000000000000000000XXX000XXX000000000000XXX000000",
+ "PaymentHistory2": "000000000000XXX003000000000000000000000000000000XXX000",
+ "PaymentHistoryStartDate": "2019-12-01",
+ "PaymentHistoryEndDate": "2017-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "100000.0000",
+ "CashLimit": "30000.0000",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "216",
+ "AccountTranDetailsID": "388899",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2013-12-16",
+ "DateOfLastPayment": "2021-12-05",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-12-30",
+ "HighCreditSanctionedAmount": "138036.0000",
+ "CurrentBalance": "137162.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000003000000000000000000000000XXX003000003000000000003",
+ "PaymentHistory2": "000000000000XXX000000",
+ "PaymentHistoryStartDate": "2021-12-01",
+ "PaymentHistoryEndDate": "2019-12-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "445000.0000",
+ "CashLimit": "100.0000",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "6393.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "217",
+ "AccountTranDetailsID": "388900",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2013-12-16",
+ "DateOfLastPayment": "2015-05-12",
+ "DateClosed": "2015-06-11",
+ "DateReportedAndCertified": "2015-08-07",
+ "HighCreditSanctionedAmount": "86524.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXX000000000000000000000000000000000000000000000000",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2015-08-01",
+ "PaymentHistoryEndDate": "2014-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "218",
+ "AccountTranDetailsID": "388901",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2013-12-04",
+ "DateOfLastPayment": "2021-12-13",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-12-31",
+ "HighCreditSanctionedAmount": "282389.0000",
+ "CurrentBalance": "169247.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-12-01",
+ "PaymentHistoryEndDate": "2019-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "219",
+ "AccountTranDetailsID": "388902",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Consumer Loan",
+ "AccountType": "Consumer Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2013-11-21",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2014-06-04",
+ "DateReportedAndCertified": "2014-06-30",
+ "HighCreditSanctionedAmount": "300000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDXXXSTDSTDSTDSTDSTDSTD",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2014-06-01",
+ "PaymentHistoryEndDate": "2011-07-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "36.0000",
+ "EMIAmount": "10442.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "220",
+ "AccountTranDetailsID": "388903",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Housing Loan",
+ "AccountType": "Housing Loan",
+ "OwnershipIndicator": "Guarantor",
+ "DateOpenedDisbursed": "2013-03-31",
+ "DateOfLastPayment": "2015-08-17",
+ "DateClosed": "2015-08-20",
+ "DateReportedAndCertified": "2015-09-30",
+ "HighCreditSanctionedAmount": "6532000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDSTDSTDXXXSTDSTDSTDSTDSTDSTDSTDXXXXXXSTDSTDXXXSTDSTD",
+ "PaymentHistory2": "STDSTDSTDSTDSTDSTDSTDXXXSTDSTDSTDSTD",
+ "PaymentHistoryStartDate": "2015-09-01",
+ "PaymentHistoryEndDate": "2013-04-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "10.5000",
+ "RepaymentTenure": "240.0000",
+ "EMIAmount": "56803.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "221",
+ "AccountTranDetailsID": "388904",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2013-02-01",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2021-06-20",
+ "DateReportedAndCertified": "2021-06-30",
+ "HighCreditSanctionedAmount": "102330.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "000XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistory2": "XXXXXXXXXXXXXXXXXXXXXXXX000000XXXXXX000000000000000000",
+ "PaymentHistoryStartDate": "2021-06-01",
+ "PaymentHistoryEndDate": "2018-07-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "150000.0000",
+ "CashLimit": "37500.0000",
+ "RateOfInterest": "0.0000",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "10000.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "222",
+ "AccountTranDetailsID": "388905",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2013-01-16",
+ "DateOfLastPayment": "2021-12-23",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-12-31",
+ "HighCreditSanctionedAmount": "94125.0000",
+ "CurrentBalance": "36619.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2021-12-01",
+ "PaymentHistoryEndDate": "2019-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "360000.0000",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "60000.0000",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "223",
+ "AccountTranDetailsID": "388906",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Two-wheeler Loan",
+ "AccountType": "Two-wheeler Loan",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2012-08-29",
+ "DateOfLastPayment": "2014-03-07",
+ "DateClosed": "2014-03-07",
+ "DateReportedAndCertified": "2014-03-31",
+ "HighCreditSanctionedAmount": "36222.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "0",
+ "PaymentHistoryStartDate": "2014-03-01",
+ "PaymentHistoryEndDate": "2011-04-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "None",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "None",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "224",
+ "AccountTranDetailsID": "388907",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Authorised User (refers to supplementary credit ca",
+ "DateOpenedDisbursed": "2010-08-10",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2014-09-22",
+ "DateReportedAndCertified": "2016-03-16",
+ "HighCreditSanctionedAmount": "32624.0000",
+ "CurrentBalance": "6176.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "NULL",
+ "PaymentHistoryStartDate": "2016-03-01",
+ "PaymentHistoryEndDate": "2016-03-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "None",
+ "RepaymentTenure": "1.0000",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "225",
+ "AccountTranDetailsID": "388908",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Credit Card",
+ "AccountType": "Credit Card",
+ "OwnershipIndicator": "Authorised User (refers to supplementary credit ca",
+ "DateOpenedDisbursed": "2010-08-10",
+ "DateOfLastPayment": "2021-10-22",
+ "DateClosed": "None",
+ "DateReportedAndCertified": "2021-12-08",
+ "HighCreditSanctionedAmount": "49248.0000",
+ "CurrentBalance": "43336.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "0",
+ "PaymentHistory2": "000000000000000XXX000000000000030000000000000XXX000XXX",
+ "PaymentHistoryStartDate": "2021-12-01",
+ "PaymentHistoryEndDate": "2019-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "50000.0000",
+ "CashLimit": "10000.0000",
+ "RateOfInterest": "35.8900",
+ "RepaymentTenure": "1.0000",
+ "EMIAmount": "None",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "226",
+ "AccountTranDetailsID": "388909",
+ "MemberReferenceNumber": "202201121116395000000",
+ "ReportingMemberShortName": "NOT DISCLOSED",
+ "AccountNumber": "Other",
+ "AccountType": "Other",
+ "OwnershipIndicator": "Individual",
+ "DateOpenedDisbursed": "2010-07-04",
+ "DateOfLastPayment": "None",
+ "DateClosed": "2011-01-05",
+ "DateReportedAndCertified": "2016-12-31",
+ "HighCreditSanctionedAmount": "240000.0000",
+ "CurrentBalance": "0.0000",
+ "AmountOverdue": "None",
+ "PaymentHistory1": "STDXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistory2": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
+ "PaymentHistoryStartDate": "2016-12-01",
+ "PaymentHistoryEndDate": "2014-01-01",
+ "SuitFiledWilfulDefault": "None",
+ "WrittenOffAndSettledStatus": "None",
+ "ValueOfCollateral": "None",
+ "TypeOfCollateral": "None",
+ "CreditLimit": "None",
+ "CashLimit": "None",
+ "RateOfInterest": "8.0000",
+ "RepaymentTenure": "12.0000",
+ "EMIAmount": "241500.0000",
+ "WrittenOffAmountTotal": "None",
+ "WrittenOffAmountPrincipal": "None",
+ "SettlementAmount": "None",
+ "PaymentFrequency": "Monthly",
+ "ActualPaymentAmount": "None",
+ "DateOfEntryForErrorCode": "None",
+ "ErrorCode": "None",
+ "DateOfEntryForCIBILRemarksCode": "None",
+ "CIBILRemarksCode": "None",
+ "DateOfEntryForErrorDisputeRemarksCode": "None",
+ "ErrorDisputeRemarksCode1": "None",
+ "ErrorDisputeRemarksCode2": "None",
+ "createdAt": "2022-03-26 05:56:27.710000+00:00",
+ "updatedAt": "2022-03-26 05:56:27.710000+00:00",
+ "createdby": "None",
+ "updatedby": "None"
+ }
+ ],
+ "consumer_dpd_details": [
+ {
+ "id": "2546",
+ "DetailID": "6831561",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2547",
+ "DetailID": "6831562",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2548",
+ "DetailID": "6831563",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2549",
+ "DetailID": "6831564",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2550",
+ "DetailID": "6831565",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2551",
+ "DetailID": "6831566",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2552",
+ "DetailID": "6831567",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2553",
+ "DetailID": "6831568",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2554",
+ "DetailID": "6831569",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2555",
+ "DetailID": "6831570",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2556",
+ "DetailID": "6831571",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2557",
+ "DetailID": "6831572",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2558",
+ "DetailID": "6831573",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2559",
+ "DetailID": "6831574",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2560",
+ "DetailID": "6831575",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2561",
+ "DetailID": "6831576",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2562",
+ "DetailID": "6831577",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2563",
+ "DetailID": "6831578",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2564",
+ "DetailID": "6831579",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2565",
+ "DetailID": "6831580",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2566",
+ "DetailID": "6831581",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2567",
+ "DetailID": "6831582",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2568",
+ "DetailID": "6831583",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2569",
+ "DetailID": "6831584",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2570",
+ "DetailID": "6831585",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2571",
+ "DetailID": "6831586",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2572",
+ "DetailID": "6831587",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2573",
+ "DetailID": "6831588",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2574",
+ "DetailID": "6831589",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2575",
+ "DetailID": "6831590",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2576",
+ "DetailID": "6831591",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2577",
+ "DetailID": "6831592",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2578",
+ "DetailID": "6831593",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2579",
+ "DetailID": "6831594",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2580",
+ "DetailID": "6831595",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2581",
+ "DetailID": "6831596",
+ "AccountTranDetailsID": "388909",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2510",
+ "DetailID": "6831525",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2511",
+ "DetailID": "6831526",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2512",
+ "DetailID": "6831527",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2513",
+ "DetailID": "6831528",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2514",
+ "DetailID": "6831529",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2515",
+ "DetailID": "6831530",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2516",
+ "DetailID": "6831531",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2517",
+ "DetailID": "6831532",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2518",
+ "DetailID": "6831533",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2519",
+ "DetailID": "6831534",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2520",
+ "DetailID": "6831535",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2521",
+ "DetailID": "6831536",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2522",
+ "DetailID": "6831537",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2523",
+ "DetailID": "6831538",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2524",
+ "DetailID": "6831539",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2525",
+ "DetailID": "6831540",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2526",
+ "DetailID": "6831541",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2527",
+ "DetailID": "6831542",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2528",
+ "DetailID": "6831543",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2529",
+ "DetailID": "6831544",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2530",
+ "DetailID": "6831545",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2531",
+ "DetailID": "6831546",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2532",
+ "DetailID": "6831547",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2533",
+ "DetailID": "6831548",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2534",
+ "DetailID": "6831549",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2535",
+ "DetailID": "6831550",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2536",
+ "DetailID": "6831551",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2537",
+ "DetailID": "6831552",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2538",
+ "DetailID": "6831553",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "30",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2539",
+ "DetailID": "6831554",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2540",
+ "DetailID": "6831555",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2541",
+ "DetailID": "6831556",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2542",
+ "DetailID": "6831557",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2543",
+ "DetailID": "6831558",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2544",
+ "DetailID": "6831559",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2545",
+ "DetailID": "6831560",
+ "AccountTranDetailsID": "388908",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2490",
+ "DetailID": "6831505",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2491",
+ "DetailID": "6831506",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2492",
+ "DetailID": "6831507",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2493",
+ "DetailID": "6831508",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2494",
+ "DetailID": "6831509",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2495",
+ "DetailID": "6831510",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2496",
+ "DetailID": "6831511",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2497",
+ "DetailID": "6831512",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2498",
+ "DetailID": "6831513",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2499",
+ "DetailID": "6831514",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2500",
+ "DetailID": "6831515",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2501",
+ "DetailID": "6831516",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2502",
+ "DetailID": "6831517",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2503",
+ "DetailID": "6831518",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2504",
+ "DetailID": "6831519",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2505",
+ "DetailID": "6831520",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2012-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2506",
+ "DetailID": "6831521",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2012-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2507",
+ "DetailID": "6831522",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2012-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2508",
+ "DetailID": "6831523",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2012-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2509",
+ "DetailID": "6831524",
+ "AccountTranDetailsID": "388906",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2012-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2454",
+ "DetailID": "6831469",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2455",
+ "DetailID": "6831470",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2456",
+ "DetailID": "6831471",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2457",
+ "DetailID": "6831472",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2458",
+ "DetailID": "6831473",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2459",
+ "DetailID": "6831474",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2460",
+ "DetailID": "6831475",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2461",
+ "DetailID": "6831476",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2462",
+ "DetailID": "6831477",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2463",
+ "DetailID": "6831478",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2464",
+ "DetailID": "6831479",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2465",
+ "DetailID": "6831480",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2466",
+ "DetailID": "6831481",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2467",
+ "DetailID": "6831482",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2468",
+ "DetailID": "6831483",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2469",
+ "DetailID": "6831484",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2470",
+ "DetailID": "6831485",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2471",
+ "DetailID": "6831486",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2472",
+ "DetailID": "6831487",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2473",
+ "DetailID": "6831488",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2474",
+ "DetailID": "6831489",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2475",
+ "DetailID": "6831490",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2476",
+ "DetailID": "6831491",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2477",
+ "DetailID": "6831492",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2478",
+ "DetailID": "6831493",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2479",
+ "DetailID": "6831494",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2480",
+ "DetailID": "6831495",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2481",
+ "DetailID": "6831496",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2482",
+ "DetailID": "6831497",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2483",
+ "DetailID": "6831498",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2484",
+ "DetailID": "6831499",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2485",
+ "DetailID": "6831500",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2486",
+ "DetailID": "6831501",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2487",
+ "DetailID": "6831502",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2488",
+ "DetailID": "6831503",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2489",
+ "DetailID": "6831504",
+ "AccountTranDetailsID": "388905",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2418",
+ "DetailID": "6831433",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2419",
+ "DetailID": "6831434",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2420",
+ "DetailID": "6831435",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2421",
+ "DetailID": "6831436",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2422",
+ "DetailID": "6831437",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2423",
+ "DetailID": "6831438",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2424",
+ "DetailID": "6831439",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2425",
+ "DetailID": "6831440",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2426",
+ "DetailID": "6831441",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2427",
+ "DetailID": "6831442",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2428",
+ "DetailID": "6831443",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2429",
+ "DetailID": "6831444",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2430",
+ "DetailID": "6831445",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2431",
+ "DetailID": "6831446",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2432",
+ "DetailID": "6831447",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2433",
+ "DetailID": "6831448",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2434",
+ "DetailID": "6831449",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2435",
+ "DetailID": "6831450",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2436",
+ "DetailID": "6831451",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2437",
+ "DetailID": "6831452",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2438",
+ "DetailID": "6831453",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2439",
+ "DetailID": "6831454",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2440",
+ "DetailID": "6831455",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2441",
+ "DetailID": "6831456",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2442",
+ "DetailID": "6831457",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2443",
+ "DetailID": "6831458",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2444",
+ "DetailID": "6831459",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2445",
+ "DetailID": "6831460",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2446",
+ "DetailID": "6831461",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2447",
+ "DetailID": "6831462",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2448",
+ "DetailID": "6831463",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2449",
+ "DetailID": "6831464",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2450",
+ "DetailID": "6831465",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2451",
+ "DetailID": "6831466",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2452",
+ "DetailID": "6831467",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2453",
+ "DetailID": "6831468",
+ "AccountTranDetailsID": "388904",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2388",
+ "DetailID": "6831403",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2389",
+ "DetailID": "6831404",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2390",
+ "DetailID": "6831405",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2391",
+ "DetailID": "6831406",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2392",
+ "DetailID": "6831407",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2393",
+ "DetailID": "6831408",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2394",
+ "DetailID": "6831409",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2395",
+ "DetailID": "6831410",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2396",
+ "DetailID": "6831411",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2397",
+ "DetailID": "6831412",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2398",
+ "DetailID": "6831413",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2399",
+ "DetailID": "6831414",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2400",
+ "DetailID": "6831415",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2401",
+ "DetailID": "6831416",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2402",
+ "DetailID": "6831417",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2403",
+ "DetailID": "6831418",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2404",
+ "DetailID": "6831419",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2405",
+ "DetailID": "6831420",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2406",
+ "DetailID": "6831421",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2407",
+ "DetailID": "6831422",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2408",
+ "DetailID": "6831423",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2409",
+ "DetailID": "6831424",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2410",
+ "DetailID": "6831425",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2411",
+ "DetailID": "6831426",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2412",
+ "DetailID": "6831427",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2413",
+ "DetailID": "6831428",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2414",
+ "DetailID": "6831429",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2415",
+ "DetailID": "6831430",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2416",
+ "DetailID": "6831431",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2417",
+ "DetailID": "6831432",
+ "AccountTranDetailsID": "388903",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2013-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2352",
+ "DetailID": "6831367",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2353",
+ "DetailID": "6831368",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2354",
+ "DetailID": "6831369",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2355",
+ "DetailID": "6831370",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2356",
+ "DetailID": "6831371",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2357",
+ "DetailID": "6831372",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2358",
+ "DetailID": "6831373",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2359",
+ "DetailID": "6831374",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2360",
+ "DetailID": "6831375",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2361",
+ "DetailID": "6831376",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2362",
+ "DetailID": "6831377",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2363",
+ "DetailID": "6831378",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2364",
+ "DetailID": "6831379",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2365",
+ "DetailID": "6831380",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2366",
+ "DetailID": "6831381",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2367",
+ "DetailID": "6831382",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2368",
+ "DetailID": "6831383",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2369",
+ "DetailID": "6831384",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2370",
+ "DetailID": "6831385",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2371",
+ "DetailID": "6831386",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2372",
+ "DetailID": "6831387",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2373",
+ "DetailID": "6831388",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2374",
+ "DetailID": "6831389",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2375",
+ "DetailID": "6831390",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2376",
+ "DetailID": "6831391",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2377",
+ "DetailID": "6831392",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2378",
+ "DetailID": "6831393",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2379",
+ "DetailID": "6831394",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2380",
+ "DetailID": "6831395",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2381",
+ "DetailID": "6831396",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2382",
+ "DetailID": "6831397",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2383",
+ "DetailID": "6831398",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2384",
+ "DetailID": "6831399",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2385",
+ "DetailID": "6831400",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2386",
+ "DetailID": "6831401",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2387",
+ "DetailID": "6831402",
+ "AccountTranDetailsID": "388901",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2332",
+ "DetailID": "6831347",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2333",
+ "DetailID": "6831348",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2334",
+ "DetailID": "6831349",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2335",
+ "DetailID": "6831350",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2336",
+ "DetailID": "6831351",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2337",
+ "DetailID": "6831352",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2338",
+ "DetailID": "6831353",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2339",
+ "DetailID": "6831354",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2340",
+ "DetailID": "6831355",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2341",
+ "DetailID": "6831356",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2342",
+ "DetailID": "6831357",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2343",
+ "DetailID": "6831358",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2344",
+ "DetailID": "6831359",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2345",
+ "DetailID": "6831360",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2346",
+ "DetailID": "6831361",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2347",
+ "DetailID": "6831362",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2348",
+ "DetailID": "6831363",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2349",
+ "DetailID": "6831364",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2350",
+ "DetailID": "6831365",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2351",
+ "DetailID": "6831366",
+ "AccountTranDetailsID": "388900",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2307",
+ "DetailID": "6831322",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2308",
+ "DetailID": "6831323",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "3",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2309",
+ "DetailID": "6831324",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2310",
+ "DetailID": "6831325",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2311",
+ "DetailID": "6831326",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2312",
+ "DetailID": "6831327",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2313",
+ "DetailID": "6831328",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2314",
+ "DetailID": "6831329",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2315",
+ "DetailID": "6831330",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2316",
+ "DetailID": "6831331",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2317",
+ "DetailID": "6831332",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2318",
+ "DetailID": "6831333",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "3",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2319",
+ "DetailID": "6831334",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2320",
+ "DetailID": "6831335",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "3",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2321",
+ "DetailID": "6831336",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2322",
+ "DetailID": "6831337",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2323",
+ "DetailID": "6831338",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2324",
+ "DetailID": "6831339",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "3",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2325",
+ "DetailID": "6831340",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2326",
+ "DetailID": "6831341",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2327",
+ "DetailID": "6831342",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2328",
+ "DetailID": "6831343",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2329",
+ "DetailID": "6831344",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2330",
+ "DetailID": "6831345",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2331",
+ "DetailID": "6831346",
+ "AccountTranDetailsID": "388899",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2271",
+ "DetailID": "6831286",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2272",
+ "DetailID": "6831287",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2273",
+ "DetailID": "6831288",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2274",
+ "DetailID": "6831289",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2275",
+ "DetailID": "6831290",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2276",
+ "DetailID": "6831291",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2277",
+ "DetailID": "6831292",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2278",
+ "DetailID": "6831293",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2279",
+ "DetailID": "6831294",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2280",
+ "DetailID": "6831295",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2281",
+ "DetailID": "6831296",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2282",
+ "DetailID": "6831297",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2283",
+ "DetailID": "6831298",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2284",
+ "DetailID": "6831299",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2285",
+ "DetailID": "6831300",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2286",
+ "DetailID": "6831301",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2287",
+ "DetailID": "6831302",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2288",
+ "DetailID": "6831303",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2289",
+ "DetailID": "6831304",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2290",
+ "DetailID": "6831305",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2291",
+ "DetailID": "6831306",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2292",
+ "DetailID": "6831307",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2293",
+ "DetailID": "6831308",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2294",
+ "DetailID": "6831309",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-01-03 00:00:00",
+ "Code": "3",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2295",
+ "DetailID": "6831310",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2296",
+ "DetailID": "6831311",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2297",
+ "DetailID": "6831312",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2298",
+ "DetailID": "6831313",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2299",
+ "DetailID": "6831314",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2300",
+ "DetailID": "6831315",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2301",
+ "DetailID": "6831316",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2302",
+ "DetailID": "6831317",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2303",
+ "DetailID": "6831318",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2304",
+ "DetailID": "6831319",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2305",
+ "DetailID": "6831320",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2306",
+ "DetailID": "6831321",
+ "AccountTranDetailsID": "388898",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2248",
+ "DetailID": "6831263",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2249",
+ "DetailID": "6831264",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2250",
+ "DetailID": "6831265",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2251",
+ "DetailID": "6831266",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2252",
+ "DetailID": "6831267",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2253",
+ "DetailID": "6831268",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2254",
+ "DetailID": "6831269",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2255",
+ "DetailID": "6831270",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2256",
+ "DetailID": "6831271",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2257",
+ "DetailID": "6831272",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2258",
+ "DetailID": "6831273",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2259",
+ "DetailID": "6831274",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2260",
+ "DetailID": "6831275",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2261",
+ "DetailID": "6831276",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2262",
+ "DetailID": "6831277",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2263",
+ "DetailID": "6831278",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2264",
+ "DetailID": "6831279",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2265",
+ "DetailID": "6831280",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2266",
+ "DetailID": "6831281",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2267",
+ "DetailID": "6831282",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2268",
+ "DetailID": "6831283",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2269",
+ "DetailID": "6831284",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2270",
+ "DetailID": "6831285",
+ "AccountTranDetailsID": "388896",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2227",
+ "DetailID": "6831242",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2228",
+ "DetailID": "6831243",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2229",
+ "DetailID": "6831244",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2230",
+ "DetailID": "6831245",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2231",
+ "DetailID": "6831246",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2232",
+ "DetailID": "6831247",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2233",
+ "DetailID": "6831248",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2234",
+ "DetailID": "6831249",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2235",
+ "DetailID": "6831250",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2236",
+ "DetailID": "6831251",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2237",
+ "DetailID": "6831252",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2238",
+ "DetailID": "6831253",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2239",
+ "DetailID": "6831254",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2240",
+ "DetailID": "6831255",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2241",
+ "DetailID": "6831256",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2242",
+ "DetailID": "6831257",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2243",
+ "DetailID": "6831258",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2244",
+ "DetailID": "6831259",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2245",
+ "DetailID": "6831260",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2246",
+ "DetailID": "6831261",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2247",
+ "DetailID": "6831262",
+ "AccountTranDetailsID": "388895",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2197",
+ "DetailID": "6831212",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2198",
+ "DetailID": "6831213",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2199",
+ "DetailID": "6831214",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2200",
+ "DetailID": "6831215",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2201",
+ "DetailID": "6831216",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2202",
+ "DetailID": "6831217",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2203",
+ "DetailID": "6831218",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2204",
+ "DetailID": "6831219",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2205",
+ "DetailID": "6831220",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2206",
+ "DetailID": "6831221",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2207",
+ "DetailID": "6831222",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2208",
+ "DetailID": "6831223",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2209",
+ "DetailID": "6831224",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2210",
+ "DetailID": "6831225",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2211",
+ "DetailID": "6831226",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2212",
+ "DetailID": "6831227",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2213",
+ "DetailID": "6831228",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2214",
+ "DetailID": "6831229",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2215",
+ "DetailID": "6831230",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2216",
+ "DetailID": "6831231",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2217",
+ "DetailID": "6831232",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2218",
+ "DetailID": "6831233",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2219",
+ "DetailID": "6831234",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2220",
+ "DetailID": "6831235",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2221",
+ "DetailID": "6831236",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2222",
+ "DetailID": "6831237",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2223",
+ "DetailID": "6831238",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2224",
+ "DetailID": "6831239",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2225",
+ "DetailID": "6831240",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2226",
+ "DetailID": "6831241",
+ "AccountTranDetailsID": "388894",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2014-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2161",
+ "DetailID": "6831176",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2162",
+ "DetailID": "6831177",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2163",
+ "DetailID": "6831178",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2164",
+ "DetailID": "6831179",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2165",
+ "DetailID": "6831180",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2166",
+ "DetailID": "6831181",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2167",
+ "DetailID": "6831182",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2168",
+ "DetailID": "6831183",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2169",
+ "DetailID": "6831184",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2170",
+ "DetailID": "6831185",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2171",
+ "DetailID": "6831186",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2172",
+ "DetailID": "6831187",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2173",
+ "DetailID": "6831188",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2174",
+ "DetailID": "6831189",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2175",
+ "DetailID": "6831190",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2176",
+ "DetailID": "6831191",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2177",
+ "DetailID": "6831192",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2178",
+ "DetailID": "6831193",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2179",
+ "DetailID": "6831194",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2180",
+ "DetailID": "6831195",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2181",
+ "DetailID": "6831196",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2182",
+ "DetailID": "6831197",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2183",
+ "DetailID": "6831198",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2184",
+ "DetailID": "6831199",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2185",
+ "DetailID": "6831200",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2186",
+ "DetailID": "6831201",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2187",
+ "DetailID": "6831202",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2188",
+ "DetailID": "6831203",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2189",
+ "DetailID": "6831204",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2190",
+ "DetailID": "6831205",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2191",
+ "DetailID": "6831206",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2192",
+ "DetailID": "6831207",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2193",
+ "DetailID": "6831208",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2194",
+ "DetailID": "6831209",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2195",
+ "DetailID": "6831210",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2196",
+ "DetailID": "6831211",
+ "AccountTranDetailsID": "388893",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2125",
+ "DetailID": "6831140",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2126",
+ "DetailID": "6831141",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2127",
+ "DetailID": "6831142",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2128",
+ "DetailID": "6831143",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2129",
+ "DetailID": "6831144",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2130",
+ "DetailID": "6831145",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2131",
+ "DetailID": "6831146",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2132",
+ "DetailID": "6831147",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2133",
+ "DetailID": "6831148",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2134",
+ "DetailID": "6831149",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2135",
+ "DetailID": "6831150",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2136",
+ "DetailID": "6831151",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2137",
+ "DetailID": "6831152",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2138",
+ "DetailID": "6831153",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2139",
+ "DetailID": "6831154",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2140",
+ "DetailID": "6831155",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2141",
+ "DetailID": "6831156",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2142",
+ "DetailID": "6831157",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2143",
+ "DetailID": "6831158",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2144",
+ "DetailID": "6831159",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2145",
+ "DetailID": "6831160",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2146",
+ "DetailID": "6831161",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2147",
+ "DetailID": "6831162",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2148",
+ "DetailID": "6831163",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-03-03 00:00:00",
+ "Code": "31",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2149",
+ "DetailID": "6831164",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2150",
+ "DetailID": "6831165",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2151",
+ "DetailID": "6831166",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-12-03 00:00:00",
+ "Code": "31",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2152",
+ "DetailID": "6831167",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2153",
+ "DetailID": "6831168",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2154",
+ "DetailID": "6831169",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2155",
+ "DetailID": "6831170",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2156",
+ "DetailID": "6831171",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2157",
+ "DetailID": "6831172",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2158",
+ "DetailID": "6831173",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2159",
+ "DetailID": "6831174",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2160",
+ "DetailID": "6831175",
+ "AccountTranDetailsID": "388891",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2105",
+ "DetailID": "6831120",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2106",
+ "DetailID": "6831121",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2107",
+ "DetailID": "6831122",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2108",
+ "DetailID": "6831123",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2109",
+ "DetailID": "6831124",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2110",
+ "DetailID": "6831125",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2111",
+ "DetailID": "6831126",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2112",
+ "DetailID": "6831127",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2113",
+ "DetailID": "6831128",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2114",
+ "DetailID": "6831129",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2115",
+ "DetailID": "6831130",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2116",
+ "DetailID": "6831131",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2117",
+ "DetailID": "6831132",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2118",
+ "DetailID": "6831133",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2119",
+ "DetailID": "6831134",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2120",
+ "DetailID": "6831135",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2121",
+ "DetailID": "6831136",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2122",
+ "DetailID": "6831137",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2123",
+ "DetailID": "6831138",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2124",
+ "DetailID": "6831139",
+ "AccountTranDetailsID": "388890",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2069",
+ "DetailID": "6831084",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2022-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2070",
+ "DetailID": "6831085",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2071",
+ "DetailID": "6831086",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2072",
+ "DetailID": "6831087",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2073",
+ "DetailID": "6831088",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2074",
+ "DetailID": "6831089",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2075",
+ "DetailID": "6831090",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2076",
+ "DetailID": "6831091",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2077",
+ "DetailID": "6831092",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2078",
+ "DetailID": "6831093",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2079",
+ "DetailID": "6831094",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2080",
+ "DetailID": "6831095",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2081",
+ "DetailID": "6831096",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2082",
+ "DetailID": "6831097",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2083",
+ "DetailID": "6831098",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2084",
+ "DetailID": "6831099",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2085",
+ "DetailID": "6831100",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2086",
+ "DetailID": "6831101",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2087",
+ "DetailID": "6831102",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2088",
+ "DetailID": "6831103",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2089",
+ "DetailID": "6831104",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2090",
+ "DetailID": "6831105",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2091",
+ "DetailID": "6831106",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2092",
+ "DetailID": "6831107",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2093",
+ "DetailID": "6831108",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2094",
+ "DetailID": "6831109",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2095",
+ "DetailID": "6831110",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2096",
+ "DetailID": "6831111",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2097",
+ "DetailID": "6831112",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2098",
+ "DetailID": "6831113",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2099",
+ "DetailID": "6831114",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2100",
+ "DetailID": "6831115",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2101",
+ "DetailID": "6831116",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2102",
+ "DetailID": "6831117",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2103",
+ "DetailID": "6831118",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2104",
+ "DetailID": "6831119",
+ "AccountTranDetailsID": "388889",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2033",
+ "DetailID": "6831048",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2022-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2034",
+ "DetailID": "6831049",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2035",
+ "DetailID": "6831050",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2036",
+ "DetailID": "6831051",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "12",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2037",
+ "DetailID": "6831052",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2038",
+ "DetailID": "6831053",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2039",
+ "DetailID": "6831054",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2040",
+ "DetailID": "6831055",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2041",
+ "DetailID": "6831056",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2042",
+ "DetailID": "6831057",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2043",
+ "DetailID": "6831058",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2044",
+ "DetailID": "6831059",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2045",
+ "DetailID": "6831060",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2046",
+ "DetailID": "6831061",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2047",
+ "DetailID": "6831062",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2048",
+ "DetailID": "6831063",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2049",
+ "DetailID": "6831064",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2050",
+ "DetailID": "6831065",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2051",
+ "DetailID": "6831066",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2052",
+ "DetailID": "6831067",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2053",
+ "DetailID": "6831068",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2054",
+ "DetailID": "6831069",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2055",
+ "DetailID": "6831070",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2056",
+ "DetailID": "6831071",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2057",
+ "DetailID": "6831072",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2058",
+ "DetailID": "6831073",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2059",
+ "DetailID": "6831074",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2060",
+ "DetailID": "6831075",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2061",
+ "DetailID": "6831076",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2062",
+ "DetailID": "6831077",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2063",
+ "DetailID": "6831078",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2064",
+ "DetailID": "6831079",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2065",
+ "DetailID": "6831080",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2066",
+ "DetailID": "6831081",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2067",
+ "DetailID": "6831082",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2068",
+ "DetailID": "6831083",
+ "AccountTranDetailsID": "388888",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1997",
+ "DetailID": "6831012",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1998",
+ "DetailID": "6831013",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1999",
+ "DetailID": "6831014",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2000",
+ "DetailID": "6831015",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2001",
+ "DetailID": "6831016",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2002",
+ "DetailID": "6831017",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2003",
+ "DetailID": "6831018",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2004",
+ "DetailID": "6831019",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2005",
+ "DetailID": "6831020",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2006",
+ "DetailID": "6831021",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2007",
+ "DetailID": "6831022",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2008",
+ "DetailID": "6831023",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2009",
+ "DetailID": "6831024",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2010",
+ "DetailID": "6831025",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2011",
+ "DetailID": "6831026",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2012",
+ "DetailID": "6831027",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2013",
+ "DetailID": "6831028",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2014",
+ "DetailID": "6831029",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2015",
+ "DetailID": "6831030",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2016",
+ "DetailID": "6831031",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2017",
+ "DetailID": "6831032",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2018",
+ "DetailID": "6831033",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2019",
+ "DetailID": "6831034",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2020",
+ "DetailID": "6831035",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2021",
+ "DetailID": "6831036",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2022",
+ "DetailID": "6831037",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2023",
+ "DetailID": "6831038",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2024",
+ "DetailID": "6831039",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2025",
+ "DetailID": "6831040",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2026",
+ "DetailID": "6831041",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2027",
+ "DetailID": "6831042",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.033000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2028",
+ "DetailID": "6831043",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2029",
+ "DetailID": "6831044",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2030",
+ "DetailID": "6831045",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2031",
+ "DetailID": "6831046",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "2032",
+ "DetailID": "6831047",
+ "AccountTranDetailsID": "388887",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1961",
+ "DetailID": "6830976",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1962",
+ "DetailID": "6830977",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1963",
+ "DetailID": "6830978",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1964",
+ "DetailID": "6830979",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1965",
+ "DetailID": "6830980",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1966",
+ "DetailID": "6830981",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1967",
+ "DetailID": "6830982",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1968",
+ "DetailID": "6830983",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1969",
+ "DetailID": "6830984",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1970",
+ "DetailID": "6830985",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1971",
+ "DetailID": "6830986",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1972",
+ "DetailID": "6830987",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1973",
+ "DetailID": "6830988",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1974",
+ "DetailID": "6830989",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1975",
+ "DetailID": "6830990",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1976",
+ "DetailID": "6830991",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1977",
+ "DetailID": "6830992",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1978",
+ "DetailID": "6830993",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1979",
+ "DetailID": "6830994",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1980",
+ "DetailID": "6830995",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1981",
+ "DetailID": "6830996",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1982",
+ "DetailID": "6830997",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1983",
+ "DetailID": "6830998",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1984",
+ "DetailID": "6830999",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1985",
+ "DetailID": "6831000",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1986",
+ "DetailID": "6831001",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1987",
+ "DetailID": "6831002",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1988",
+ "DetailID": "6831003",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1989",
+ "DetailID": "6831004",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1990",
+ "DetailID": "6831005",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1991",
+ "DetailID": "6831006",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1992",
+ "DetailID": "6831007",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1993",
+ "DetailID": "6831008",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1994",
+ "DetailID": "6831009",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1995",
+ "DetailID": "6831010",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1996",
+ "DetailID": "6831011",
+ "AccountTranDetailsID": "388886",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.030000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1925",
+ "DetailID": "6830940",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1926",
+ "DetailID": "6830941",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1927",
+ "DetailID": "6830942",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1928",
+ "DetailID": "6830943",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1929",
+ "DetailID": "6830944",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1930",
+ "DetailID": "6830945",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1931",
+ "DetailID": "6830946",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1932",
+ "DetailID": "6830947",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1933",
+ "DetailID": "6830948",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1934",
+ "DetailID": "6830949",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1935",
+ "DetailID": "6830950",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1936",
+ "DetailID": "6830951",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1937",
+ "DetailID": "6830952",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1938",
+ "DetailID": "6830953",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1939",
+ "DetailID": "6830954",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1940",
+ "DetailID": "6830955",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1941",
+ "DetailID": "6830956",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1942",
+ "DetailID": "6830957",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1943",
+ "DetailID": "6830958",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1944",
+ "DetailID": "6830959",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1945",
+ "DetailID": "6830960",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1946",
+ "DetailID": "6830961",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1947",
+ "DetailID": "6830962",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1948",
+ "DetailID": "6830963",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1949",
+ "DetailID": "6830964",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1950",
+ "DetailID": "6830965",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1951",
+ "DetailID": "6830966",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1952",
+ "DetailID": "6830967",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1953",
+ "DetailID": "6830968",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1954",
+ "DetailID": "6830969",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1955",
+ "DetailID": "6830970",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1956",
+ "DetailID": "6830971",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1957",
+ "DetailID": "6830972",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1958",
+ "DetailID": "6830973",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1959",
+ "DetailID": "6830974",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1960",
+ "DetailID": "6830975",
+ "AccountTranDetailsID": "388885",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1889",
+ "DetailID": "6830904",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1890",
+ "DetailID": "6830905",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1891",
+ "DetailID": "6830906",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1892",
+ "DetailID": "6830907",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1893",
+ "DetailID": "6830908",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1894",
+ "DetailID": "6830909",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1895",
+ "DetailID": "6830910",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1896",
+ "DetailID": "6830911",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1897",
+ "DetailID": "6830912",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1898",
+ "DetailID": "6830913",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1899",
+ "DetailID": "6830914",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1900",
+ "DetailID": "6830915",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1901",
+ "DetailID": "6830916",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1902",
+ "DetailID": "6830917",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1903",
+ "DetailID": "6830918",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1904",
+ "DetailID": "6830919",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1905",
+ "DetailID": "6830920",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1906",
+ "DetailID": "6830921",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1907",
+ "DetailID": "6830922",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1908",
+ "DetailID": "6830923",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1909",
+ "DetailID": "6830924",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1910",
+ "DetailID": "6830925",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1911",
+ "DetailID": "6830926",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "29",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1912",
+ "DetailID": "6830927",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1913",
+ "DetailID": "6830928",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1914",
+ "DetailID": "6830929",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1915",
+ "DetailID": "6830930",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1916",
+ "DetailID": "6830931",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1917",
+ "DetailID": "6830932",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1918",
+ "DetailID": "6830933",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1919",
+ "DetailID": "6830934",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1920",
+ "DetailID": "6830935",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1921",
+ "DetailID": "6830936",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1922",
+ "DetailID": "6830937",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.023000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1923",
+ "DetailID": "6830938",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1924",
+ "DetailID": "6830939",
+ "AccountTranDetailsID": "388884",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.027000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1860",
+ "DetailID": "6830875",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1861",
+ "DetailID": "6830876",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1862",
+ "DetailID": "6830877",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1863",
+ "DetailID": "6830878",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1864",
+ "DetailID": "6830879",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1865",
+ "DetailID": "6830880",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1866",
+ "DetailID": "6830881",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1867",
+ "DetailID": "6830882",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1868",
+ "DetailID": "6830883",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1869",
+ "DetailID": "6830884",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1870",
+ "DetailID": "6830885",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1871",
+ "DetailID": "6830886",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1872",
+ "DetailID": "6830887",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1873",
+ "DetailID": "6830888",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1874",
+ "DetailID": "6830889",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1875",
+ "DetailID": "6830890",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1876",
+ "DetailID": "6830891",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1877",
+ "DetailID": "6830892",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.020000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1878",
+ "DetailID": "6830893",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1879",
+ "DetailID": "6830894",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1880",
+ "DetailID": "6830895",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1881",
+ "DetailID": "6830896",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1882",
+ "DetailID": "6830897",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1883",
+ "DetailID": "6830898",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1884",
+ "DetailID": "6830899",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1885",
+ "DetailID": "6830900",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1886",
+ "DetailID": "6830901",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1887",
+ "DetailID": "6830902",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1888",
+ "DetailID": "6830903",
+ "AccountTranDetailsID": "388883",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1824",
+ "DetailID": "6830839",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1825",
+ "DetailID": "6830840",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1826",
+ "DetailID": "6830841",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1827",
+ "DetailID": "6830842",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1828",
+ "DetailID": "6830843",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1829",
+ "DetailID": "6830844",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1830",
+ "DetailID": "6830845",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1831",
+ "DetailID": "6830846",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1832",
+ "DetailID": "6830847",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1833",
+ "DetailID": "6830848",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1834",
+ "DetailID": "6830849",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1835",
+ "DetailID": "6830850",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1836",
+ "DetailID": "6830851",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1837",
+ "DetailID": "6830852",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1838",
+ "DetailID": "6830853",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1839",
+ "DetailID": "6830854",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1840",
+ "DetailID": "6830855",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1841",
+ "DetailID": "6830856",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1842",
+ "DetailID": "6830857",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1843",
+ "DetailID": "6830858",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1844",
+ "DetailID": "6830859",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1845",
+ "DetailID": "6830860",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1846",
+ "DetailID": "6830861",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1847",
+ "DetailID": "6830862",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1848",
+ "DetailID": "6830863",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1849",
+ "DetailID": "6830864",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1850",
+ "DetailID": "6830865",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1851",
+ "DetailID": "6830866",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1852",
+ "DetailID": "6830867",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1853",
+ "DetailID": "6830868",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1854",
+ "DetailID": "6830869",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1855",
+ "DetailID": "6830870",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1856",
+ "DetailID": "6830871",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1857",
+ "DetailID": "6830872",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1858",
+ "DetailID": "6830873",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1859",
+ "DetailID": "6830874",
+ "AccountTranDetailsID": "388882",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.017000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1796",
+ "DetailID": "6830811",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1797",
+ "DetailID": "6830812",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1798",
+ "DetailID": "6830813",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1799",
+ "DetailID": "6830814",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1800",
+ "DetailID": "6830815",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1801",
+ "DetailID": "6830816",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1802",
+ "DetailID": "6830817",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1803",
+ "DetailID": "6830818",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1804",
+ "DetailID": "6830819",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1805",
+ "DetailID": "6830820",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1806",
+ "DetailID": "6830821",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1807",
+ "DetailID": "6830822",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1808",
+ "DetailID": "6830823",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1809",
+ "DetailID": "6830824",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1810",
+ "DetailID": "6830825",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1811",
+ "DetailID": "6830826",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1812",
+ "DetailID": "6830827",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1813",
+ "DetailID": "6830828",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1814",
+ "DetailID": "6830829",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1815",
+ "DetailID": "6830830",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1816",
+ "DetailID": "6830831",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1817",
+ "DetailID": "6830832",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1818",
+ "DetailID": "6830833",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1819",
+ "DetailID": "6830834",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1820",
+ "DetailID": "6830835",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1821",
+ "DetailID": "6830836",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1822",
+ "DetailID": "6830837",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1823",
+ "DetailID": "6830838",
+ "AccountTranDetailsID": "388881",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.013000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1760",
+ "DetailID": "6830775",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1761",
+ "DetailID": "6830776",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1762",
+ "DetailID": "6830777",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1763",
+ "DetailID": "6830778",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1764",
+ "DetailID": "6830779",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1765",
+ "DetailID": "6830780",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1766",
+ "DetailID": "6830781",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1767",
+ "DetailID": "6830782",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1768",
+ "DetailID": "6830783",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1769",
+ "DetailID": "6830784",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1770",
+ "DetailID": "6830785",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1771",
+ "DetailID": "6830786",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1772",
+ "DetailID": "6830787",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1773",
+ "DetailID": "6830788",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1774",
+ "DetailID": "6830789",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1775",
+ "DetailID": "6830790",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1776",
+ "DetailID": "6830791",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1777",
+ "DetailID": "6830792",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1778",
+ "DetailID": "6830793",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1779",
+ "DetailID": "6830794",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1780",
+ "DetailID": "6830795",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1781",
+ "DetailID": "6830796",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1782",
+ "DetailID": "6830797",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1783",
+ "DetailID": "6830798",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1784",
+ "DetailID": "6830799",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1785",
+ "DetailID": "6830800",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1786",
+ "DetailID": "6830801",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1787",
+ "DetailID": "6830802",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1788",
+ "DetailID": "6830803",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1789",
+ "DetailID": "6830804",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1790",
+ "DetailID": "6830805",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1791",
+ "DetailID": "6830806",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1792",
+ "DetailID": "6830807",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1793",
+ "DetailID": "6830808",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1794",
+ "DetailID": "6830809",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1795",
+ "DetailID": "6830810",
+ "AccountTranDetailsID": "388880",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55.010000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1724",
+ "DetailID": "6830739",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1725",
+ "DetailID": "6830740",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1726",
+ "DetailID": "6830741",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1727",
+ "DetailID": "6830742",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1728",
+ "DetailID": "6830743",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1729",
+ "DetailID": "6830744",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1730",
+ "DetailID": "6830745",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1731",
+ "DetailID": "6830746",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1732",
+ "DetailID": "6830747",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1733",
+ "DetailID": "6830748",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1734",
+ "DetailID": "6830749",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1735",
+ "DetailID": "6830750",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1736",
+ "DetailID": "6830751",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1737",
+ "DetailID": "6830752",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1738",
+ "DetailID": "6830753",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1739",
+ "DetailID": "6830754",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1740",
+ "DetailID": "6830755",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1741",
+ "DetailID": "6830756",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1742",
+ "DetailID": "6830757",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1743",
+ "DetailID": "6830758",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1744",
+ "DetailID": "6830759",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1745",
+ "DetailID": "6830760",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1746",
+ "DetailID": "6830761",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1747",
+ "DetailID": "6830762",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1748",
+ "DetailID": "6830763",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1749",
+ "DetailID": "6830764",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1750",
+ "DetailID": "6830765",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1751",
+ "DetailID": "6830766",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1752",
+ "DetailID": "6830767",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1753",
+ "DetailID": "6830768",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1754",
+ "DetailID": "6830769",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1755",
+ "DetailID": "6830770",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1756",
+ "DetailID": "6830771",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1757",
+ "DetailID": "6830772",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1758",
+ "DetailID": "6830773",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1759",
+ "DetailID": "6830774",
+ "AccountTranDetailsID": "388879",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:55.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1699",
+ "DetailID": "6830714",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1700",
+ "DetailID": "6830715",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1701",
+ "DetailID": "6830716",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1702",
+ "DetailID": "6830717",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1703",
+ "DetailID": "6830718",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1704",
+ "DetailID": "6830719",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1705",
+ "DetailID": "6830720",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1706",
+ "DetailID": "6830721",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1707",
+ "DetailID": "6830722",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1708",
+ "DetailID": "6830723",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1709",
+ "DetailID": "6830724",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1710",
+ "DetailID": "6830725",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1711",
+ "DetailID": "6830726",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1712",
+ "DetailID": "6830727",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1713",
+ "DetailID": "6830728",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1714",
+ "DetailID": "6830729",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1715",
+ "DetailID": "6830730",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1716",
+ "DetailID": "6830731",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1717",
+ "DetailID": "6830732",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1718",
+ "DetailID": "6830733",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1719",
+ "DetailID": "6830734",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1720",
+ "DetailID": "6830735",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1721",
+ "DetailID": "6830736",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1722",
+ "DetailID": "6830737",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1723",
+ "DetailID": "6830738",
+ "AccountTranDetailsID": "388878",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2015-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1673",
+ "DetailID": "6830688",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1674",
+ "DetailID": "6830689",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1675",
+ "DetailID": "6830690",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1676",
+ "DetailID": "6830691",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1677",
+ "DetailID": "6830692",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1678",
+ "DetailID": "6830693",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1679",
+ "DetailID": "6830694",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1680",
+ "DetailID": "6830695",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1681",
+ "DetailID": "6830696",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1682",
+ "DetailID": "6830697",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1683",
+ "DetailID": "6830698",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1684",
+ "DetailID": "6830699",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1685",
+ "DetailID": "6830700",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1686",
+ "DetailID": "6830701",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1687",
+ "DetailID": "6830702",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1688",
+ "DetailID": "6830703",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1689",
+ "DetailID": "6830704",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1690",
+ "DetailID": "6830705",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1691",
+ "DetailID": "6830706",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1692",
+ "DetailID": "6830707",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1693",
+ "DetailID": "6830708",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1694",
+ "DetailID": "6830709",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1695",
+ "DetailID": "6830710",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1696",
+ "DetailID": "6830711",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1697",
+ "DetailID": "6830712",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1698",
+ "DetailID": "6830713",
+ "AccountTranDetailsID": "388877",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2016-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:55",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1637",
+ "DetailID": "6830652",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1638",
+ "DetailID": "6830653",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1639",
+ "DetailID": "6830654",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1640",
+ "DetailID": "6830655",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1641",
+ "DetailID": "6830656",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1642",
+ "DetailID": "6830657",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1643",
+ "DetailID": "6830658",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1644",
+ "DetailID": "6830659",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1645",
+ "DetailID": "6830660",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1646",
+ "DetailID": "6830661",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1647",
+ "DetailID": "6830662",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1648",
+ "DetailID": "6830663",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1649",
+ "DetailID": "6830664",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1650",
+ "DetailID": "6830665",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1651",
+ "DetailID": "6830666",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1652",
+ "DetailID": "6830667",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1653",
+ "DetailID": "6830668",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1654",
+ "DetailID": "6830669",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1655",
+ "DetailID": "6830670",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1656",
+ "DetailID": "6830671",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1657",
+ "DetailID": "6830672",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1658",
+ "DetailID": "6830673",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1659",
+ "DetailID": "6830674",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1660",
+ "DetailID": "6830675",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1661",
+ "DetailID": "6830676",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1662",
+ "DetailID": "6830677",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1663",
+ "DetailID": "6830678",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1664",
+ "DetailID": "6830679",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1665",
+ "DetailID": "6830680",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1666",
+ "DetailID": "6830681",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1667",
+ "DetailID": "6830682",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1668",
+ "DetailID": "6830683",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1669",
+ "DetailID": "6830684",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1670",
+ "DetailID": "6830685",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1671",
+ "DetailID": "6830686",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1672",
+ "DetailID": "6830687",
+ "AccountTranDetailsID": "388876",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.097000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1601",
+ "DetailID": "6830616",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1602",
+ "DetailID": "6830617",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1603",
+ "DetailID": "6830618",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1604",
+ "DetailID": "6830619",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1605",
+ "DetailID": "6830620",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1606",
+ "DetailID": "6830621",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1607",
+ "DetailID": "6830622",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1608",
+ "DetailID": "6830623",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1609",
+ "DetailID": "6830624",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1610",
+ "DetailID": "6830625",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1611",
+ "DetailID": "6830626",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1612",
+ "DetailID": "6830627",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1613",
+ "DetailID": "6830628",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1614",
+ "DetailID": "6830629",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1615",
+ "DetailID": "6830630",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1616",
+ "DetailID": "6830631",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1617",
+ "DetailID": "6830632",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1618",
+ "DetailID": "6830633",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1619",
+ "DetailID": "6830634",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1620",
+ "DetailID": "6830635",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1621",
+ "DetailID": "6830636",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1622",
+ "DetailID": "6830637",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1623",
+ "DetailID": "6830638",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1624",
+ "DetailID": "6830639",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1625",
+ "DetailID": "6830640",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1626",
+ "DetailID": "6830641",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1627",
+ "DetailID": "6830642",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1628",
+ "DetailID": "6830643",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1629",
+ "DetailID": "6830644",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1630",
+ "DetailID": "6830645",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1631",
+ "DetailID": "6830646",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1632",
+ "DetailID": "6830647",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1633",
+ "DetailID": "6830648",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1634",
+ "DetailID": "6830649",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1635",
+ "DetailID": "6830650",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1636",
+ "DetailID": "6830651",
+ "AccountTranDetailsID": "388875",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.093000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1565",
+ "DetailID": "6830580",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1566",
+ "DetailID": "6830581",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1567",
+ "DetailID": "6830582",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1568",
+ "DetailID": "6830583",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1569",
+ "DetailID": "6830584",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1570",
+ "DetailID": "6830585",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1571",
+ "DetailID": "6830586",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1572",
+ "DetailID": "6830587",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1573",
+ "DetailID": "6830588",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1574",
+ "DetailID": "6830589",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1575",
+ "DetailID": "6830590",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1576",
+ "DetailID": "6830591",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1577",
+ "DetailID": "6830592",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1578",
+ "DetailID": "6830593",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1579",
+ "DetailID": "6830594",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1580",
+ "DetailID": "6830595",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1581",
+ "DetailID": "6830596",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1582",
+ "DetailID": "6830597",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1583",
+ "DetailID": "6830598",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1584",
+ "DetailID": "6830599",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1585",
+ "DetailID": "6830600",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1586",
+ "DetailID": "6830601",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1587",
+ "DetailID": "6830602",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1588",
+ "DetailID": "6830603",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1589",
+ "DetailID": "6830604",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1590",
+ "DetailID": "6830605",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1591",
+ "DetailID": "6830606",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1592",
+ "DetailID": "6830607",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1593",
+ "DetailID": "6830608",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1594",
+ "DetailID": "6830609",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1595",
+ "DetailID": "6830610",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1596",
+ "DetailID": "6830611",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1597",
+ "DetailID": "6830612",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1598",
+ "DetailID": "6830613",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1599",
+ "DetailID": "6830614",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1600",
+ "DetailID": "6830615",
+ "AccountTranDetailsID": "388872",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.090000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1529",
+ "DetailID": "6830544",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1530",
+ "DetailID": "6830545",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1531",
+ "DetailID": "6830546",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1532",
+ "DetailID": "6830547",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1533",
+ "DetailID": "6830548",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1534",
+ "DetailID": "6830549",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1535",
+ "DetailID": "6830550",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1536",
+ "DetailID": "6830551",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1537",
+ "DetailID": "6830552",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1538",
+ "DetailID": "6830553",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1539",
+ "DetailID": "6830554",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1540",
+ "DetailID": "6830555",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "9",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1541",
+ "DetailID": "6830556",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1542",
+ "DetailID": "6830557",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1543",
+ "DetailID": "6830558",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1544",
+ "DetailID": "6830559",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1545",
+ "DetailID": "6830560",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1546",
+ "DetailID": "6830561",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1547",
+ "DetailID": "6830562",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1548",
+ "DetailID": "6830563",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1549",
+ "DetailID": "6830564",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1550",
+ "DetailID": "6830565",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1551",
+ "DetailID": "6830566",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1552",
+ "DetailID": "6830567",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1553",
+ "DetailID": "6830568",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1554",
+ "DetailID": "6830569",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1555",
+ "DetailID": "6830570",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1556",
+ "DetailID": "6830571",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1557",
+ "DetailID": "6830572",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1558",
+ "DetailID": "6830573",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1559",
+ "DetailID": "6830574",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1560",
+ "DetailID": "6830575",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.083000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1561",
+ "DetailID": "6830576",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1562",
+ "DetailID": "6830577",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1563",
+ "DetailID": "6830578",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1564",
+ "DetailID": "6830579",
+ "AccountTranDetailsID": "388871",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.087000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1497",
+ "DetailID": "6830512",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1498",
+ "DetailID": "6830513",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1499",
+ "DetailID": "6830514",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1500",
+ "DetailID": "6830515",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1501",
+ "DetailID": "6830516",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1502",
+ "DetailID": "6830517",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1503",
+ "DetailID": "6830518",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1504",
+ "DetailID": "6830519",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1505",
+ "DetailID": "6830520",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1506",
+ "DetailID": "6830521",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1507",
+ "DetailID": "6830522",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1508",
+ "DetailID": "6830523",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1509",
+ "DetailID": "6830524",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1510",
+ "DetailID": "6830525",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1511",
+ "DetailID": "6830526",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1512",
+ "DetailID": "6830527",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1513",
+ "DetailID": "6830528",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1514",
+ "DetailID": "6830529",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1515",
+ "DetailID": "6830530",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1516",
+ "DetailID": "6830531",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1517",
+ "DetailID": "6830532",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1518",
+ "DetailID": "6830533",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1519",
+ "DetailID": "6830534",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1520",
+ "DetailID": "6830535",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1521",
+ "DetailID": "6830536",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1522",
+ "DetailID": "6830537",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-06-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1523",
+ "DetailID": "6830538",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-05-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1524",
+ "DetailID": "6830539",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1525",
+ "DetailID": "6830540",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1526",
+ "DetailID": "6830541",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1527",
+ "DetailID": "6830542",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-01-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1528",
+ "DetailID": "6830543",
+ "AccountTranDetailsID": "388869",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2017-12-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.080000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1461",
+ "DetailID": "6830476",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1462",
+ "DetailID": "6830477",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1463",
+ "DetailID": "6830478",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1464",
+ "DetailID": "6830479",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1465",
+ "DetailID": "6830480",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1466",
+ "DetailID": "6830481",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1467",
+ "DetailID": "6830482",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1468",
+ "DetailID": "6830483",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1469",
+ "DetailID": "6830484",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1470",
+ "DetailID": "6830485",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1471",
+ "DetailID": "6830486",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1472",
+ "DetailID": "6830487",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1473",
+ "DetailID": "6830488",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1474",
+ "DetailID": "6830489",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1475",
+ "DetailID": "6830490",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1476",
+ "DetailID": "6830491",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1477",
+ "DetailID": "6830492",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1478",
+ "DetailID": "6830493",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1479",
+ "DetailID": "6830494",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1480",
+ "DetailID": "6830495",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1481",
+ "DetailID": "6830496",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1482",
+ "DetailID": "6830497",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1483",
+ "DetailID": "6830498",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1484",
+ "DetailID": "6830499",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1485",
+ "DetailID": "6830500",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1486",
+ "DetailID": "6830501",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1487",
+ "DetailID": "6830502",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1488",
+ "DetailID": "6830503",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1489",
+ "DetailID": "6830504",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1490",
+ "DetailID": "6830505",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1491",
+ "DetailID": "6830506",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1492",
+ "DetailID": "6830507",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1493",
+ "DetailID": "6830508",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1494",
+ "DetailID": "6830509",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1495",
+ "DetailID": "6830510",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1496",
+ "DetailID": "6830511",
+ "AccountTranDetailsID": "388868",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.077000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1426",
+ "DetailID": "6830441",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1427",
+ "DetailID": "6830442",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1428",
+ "DetailID": "6830443",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1429",
+ "DetailID": "6830444",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "STD",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1430",
+ "DetailID": "6830445",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1431",
+ "DetailID": "6830446",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1432",
+ "DetailID": "6830447",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1433",
+ "DetailID": "6830448",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1434",
+ "DetailID": "6830449",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1435",
+ "DetailID": "6830450",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "87",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1436",
+ "DetailID": "6830451",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1437",
+ "DetailID": "6830452",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1438",
+ "DetailID": "6830453",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1439",
+ "DetailID": "6830454",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1440",
+ "DetailID": "6830455",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1441",
+ "DetailID": "6830456",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1442",
+ "DetailID": "6830457",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1443",
+ "DetailID": "6830458",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1444",
+ "DetailID": "6830459",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1445",
+ "DetailID": "6830460",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1446",
+ "DetailID": "6830461",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1447",
+ "DetailID": "6830462",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1448",
+ "DetailID": "6830463",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1449",
+ "DetailID": "6830464",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1450",
+ "DetailID": "6830465",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1451",
+ "DetailID": "6830466",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1452",
+ "DetailID": "6830467",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1453",
+ "DetailID": "6830468",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1454",
+ "DetailID": "6830469",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1455",
+ "DetailID": "6830470",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1456",
+ "DetailID": "6830471",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1457",
+ "DetailID": "6830472",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1458",
+ "DetailID": "6830473",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1459",
+ "DetailID": "6830474",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1460",
+ "DetailID": "6830475",
+ "AccountTranDetailsID": "388867",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.073000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1390",
+ "DetailID": "6830405",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1391",
+ "DetailID": "6830406",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1392",
+ "DetailID": "6830407",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1393",
+ "DetailID": "6830408",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1394",
+ "DetailID": "6830409",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1395",
+ "DetailID": "6830410",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1396",
+ "DetailID": "6830411",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1397",
+ "DetailID": "6830412",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1398",
+ "DetailID": "6830413",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1399",
+ "DetailID": "6830414",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1400",
+ "DetailID": "6830415",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1401",
+ "DetailID": "6830416",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1402",
+ "DetailID": "6830417",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1403",
+ "DetailID": "6830418",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1404",
+ "DetailID": "6830419",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1405",
+ "DetailID": "6830420",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1406",
+ "DetailID": "6830421",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1407",
+ "DetailID": "6830422",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1408",
+ "DetailID": "6830423",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1409",
+ "DetailID": "6830424",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1410",
+ "DetailID": "6830425",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1411",
+ "DetailID": "6830426",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1412",
+ "DetailID": "6830427",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1413",
+ "DetailID": "6830428",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1414",
+ "DetailID": "6830429",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1415",
+ "DetailID": "6830430",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1416",
+ "DetailID": "6830431",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1417",
+ "DetailID": "6830432",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1418",
+ "DetailID": "6830433",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1419",
+ "DetailID": "6830434",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1420",
+ "DetailID": "6830435",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1421",
+ "DetailID": "6830436",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1422",
+ "DetailID": "6830437",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.070000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1423",
+ "DetailID": "6830438",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1424",
+ "DetailID": "6830439",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1425",
+ "DetailID": "6830440",
+ "AccountTranDetailsID": "388866",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.007000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1362",
+ "DetailID": "6830377",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1363",
+ "DetailID": "6830378",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1364",
+ "DetailID": "6830379",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1365",
+ "DetailID": "6830380",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1366",
+ "DetailID": "6830381",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1367",
+ "DetailID": "6830382",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1368",
+ "DetailID": "6830383",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1369",
+ "DetailID": "6830384",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1370",
+ "DetailID": "6830385",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1371",
+ "DetailID": "6830386",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1372",
+ "DetailID": "6830387",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1373",
+ "DetailID": "6830388",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1374",
+ "DetailID": "6830389",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1375",
+ "DetailID": "6830390",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1376",
+ "DetailID": "6830391",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1377",
+ "DetailID": "6830392",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1378",
+ "DetailID": "6830393",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1379",
+ "DetailID": "6830394",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1380",
+ "DetailID": "6830395",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1381",
+ "DetailID": "6830396",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1382",
+ "DetailID": "6830397",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1383",
+ "DetailID": "6830398",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1384",
+ "DetailID": "6830399",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1385",
+ "DetailID": "6830400",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1386",
+ "DetailID": "6830401",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1387",
+ "DetailID": "6830402",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-12-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1388",
+ "DetailID": "6830403",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-11-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1389",
+ "DetailID": "6830404",
+ "AccountTranDetailsID": "388865",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2018-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.067000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1341",
+ "DetailID": "6830356",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1342",
+ "DetailID": "6830357",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1343",
+ "DetailID": "6830358",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1344",
+ "DetailID": "6830359",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1345",
+ "DetailID": "6830360",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1346",
+ "DetailID": "6830361",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1347",
+ "DetailID": "6830362",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1348",
+ "DetailID": "6830363",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1349",
+ "DetailID": "6830364",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1350",
+ "DetailID": "6830365",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1351",
+ "DetailID": "6830366",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1352",
+ "DetailID": "6830367",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1353",
+ "DetailID": "6830368",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1354",
+ "DetailID": "6830369",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1355",
+ "DetailID": "6830370",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1356",
+ "DetailID": "6830371",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "59",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1357",
+ "DetailID": "6830372",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1358",
+ "DetailID": "6830373",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1359",
+ "DetailID": "6830374",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1360",
+ "DetailID": "6830375",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1361",
+ "DetailID": "6830376",
+ "AccountTranDetailsID": "388864",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.063000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1316",
+ "DetailID": "6830331",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1317",
+ "DetailID": "6830332",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1318",
+ "DetailID": "6830333",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1319",
+ "DetailID": "6830334",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1320",
+ "DetailID": "6830335",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1321",
+ "DetailID": "6830336",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1322",
+ "DetailID": "6830337",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1323",
+ "DetailID": "6830338",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1324",
+ "DetailID": "6830339",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1325",
+ "DetailID": "6830340",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1326",
+ "DetailID": "6830341",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1327",
+ "DetailID": "6830342",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1328",
+ "DetailID": "6830343",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1329",
+ "DetailID": "6830344",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1330",
+ "DetailID": "6830345",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1331",
+ "DetailID": "6830346",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1332",
+ "DetailID": "6830347",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1333",
+ "DetailID": "6830348",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1334",
+ "DetailID": "6830349",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1335",
+ "DetailID": "6830350",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1336",
+ "DetailID": "6830351",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1337",
+ "DetailID": "6830352",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1338",
+ "DetailID": "6830353",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1339",
+ "DetailID": "6830354",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1340",
+ "DetailID": "6830355",
+ "AccountTranDetailsID": "388863",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.060000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1291",
+ "DetailID": "6830306",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1292",
+ "DetailID": "6830307",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1293",
+ "DetailID": "6830308",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1294",
+ "DetailID": "6830309",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1295",
+ "DetailID": "6830310",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1296",
+ "DetailID": "6830311",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1297",
+ "DetailID": "6830312",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1298",
+ "DetailID": "6830313",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1299",
+ "DetailID": "6830314",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1300",
+ "DetailID": "6830315",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1301",
+ "DetailID": "6830316",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1302",
+ "DetailID": "6830317",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1303",
+ "DetailID": "6830318",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1304",
+ "DetailID": "6830319",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1305",
+ "DetailID": "6830320",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1306",
+ "DetailID": "6830321",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1307",
+ "DetailID": "6830322",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1308",
+ "DetailID": "6830323",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1309",
+ "DetailID": "6830324",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1310",
+ "DetailID": "6830325",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1311",
+ "DetailID": "6830326",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1312",
+ "DetailID": "6830327",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1313",
+ "DetailID": "6830328",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1314",
+ "DetailID": "6830329",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1315",
+ "DetailID": "6830330",
+ "AccountTranDetailsID": "388862",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.057000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1266",
+ "DetailID": "6830281",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1267",
+ "DetailID": "6830282",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1268",
+ "DetailID": "6830283",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1269",
+ "DetailID": "6830284",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1270",
+ "DetailID": "6830285",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1271",
+ "DetailID": "6830286",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1272",
+ "DetailID": "6830287",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1273",
+ "DetailID": "6830288",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1274",
+ "DetailID": "6830289",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1275",
+ "DetailID": "6830290",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1276",
+ "DetailID": "6830291",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1277",
+ "DetailID": "6830292",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1278",
+ "DetailID": "6830293",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1279",
+ "DetailID": "6830294",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1280",
+ "DetailID": "6830295",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1281",
+ "DetailID": "6830296",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1282",
+ "DetailID": "6830297",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1283",
+ "DetailID": "6830298",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1284",
+ "DetailID": "6830299",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1285",
+ "DetailID": "6830300",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1286",
+ "DetailID": "6830301",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1287",
+ "DetailID": "6830302",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1288",
+ "DetailID": "6830303",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1289",
+ "DetailID": "6830304",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1290",
+ "DetailID": "6830305",
+ "AccountTranDetailsID": "388861",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1242",
+ "DetailID": "6830257",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1243",
+ "DetailID": "6830258",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1244",
+ "DetailID": "6830259",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1245",
+ "DetailID": "6830260",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1246",
+ "DetailID": "6830261",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1247",
+ "DetailID": "6830262",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1248",
+ "DetailID": "6830263",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1249",
+ "DetailID": "6830264",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1250",
+ "DetailID": "6830265",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1251",
+ "DetailID": "6830266",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1252",
+ "DetailID": "6830267",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1253",
+ "DetailID": "6830268",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1254",
+ "DetailID": "6830269",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1255",
+ "DetailID": "6830270",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1256",
+ "DetailID": "6830271",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1257",
+ "DetailID": "6830272",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.003000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1258",
+ "DetailID": "6830273",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "25",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1259",
+ "DetailID": "6830274",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "24",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1260",
+ "DetailID": "6830275",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1261",
+ "DetailID": "6830276",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1262",
+ "DetailID": "6830277",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1263",
+ "DetailID": "6830278",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1264",
+ "DetailID": "6830279",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1265",
+ "DetailID": "6830280",
+ "AccountTranDetailsID": "388860",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.053000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1222",
+ "DetailID": "6830237",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1223",
+ "DetailID": "6830238",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1224",
+ "DetailID": "6830239",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1225",
+ "DetailID": "6830240",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1226",
+ "DetailID": "6830241",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1227",
+ "DetailID": "6830242",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1228",
+ "DetailID": "6830243",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1229",
+ "DetailID": "6830244",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1230",
+ "DetailID": "6830245",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1231",
+ "DetailID": "6830246",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1232",
+ "DetailID": "6830247",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1233",
+ "DetailID": "6830248",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1234",
+ "DetailID": "6830249",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1235",
+ "DetailID": "6830250",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1236",
+ "DetailID": "6830251",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1237",
+ "DetailID": "6830252",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1238",
+ "DetailID": "6830253",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1239",
+ "DetailID": "6830254",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1240",
+ "DetailID": "6830255",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1241",
+ "DetailID": "6830256",
+ "AccountTranDetailsID": "388859",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1198",
+ "DetailID": "6830213",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1199",
+ "DetailID": "6830214",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1200",
+ "DetailID": "6830215",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1201",
+ "DetailID": "6830216",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1202",
+ "DetailID": "6830217",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1203",
+ "DetailID": "6830218",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1204",
+ "DetailID": "6830219",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1205",
+ "DetailID": "6830220",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1206",
+ "DetailID": "6830221",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1207",
+ "DetailID": "6830222",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1208",
+ "DetailID": "6830223",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1209",
+ "DetailID": "6830224",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1210",
+ "DetailID": "6830225",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1211",
+ "DetailID": "6830226",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1212",
+ "DetailID": "6830227",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1213",
+ "DetailID": "6830228",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1214",
+ "DetailID": "6830229",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1215",
+ "DetailID": "6830230",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1216",
+ "DetailID": "6830231",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1217",
+ "DetailID": "6830232",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1218",
+ "DetailID": "6830233",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1219",
+ "DetailID": "6830234",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1220",
+ "DetailID": "6830235",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1221",
+ "DetailID": "6830236",
+ "AccountTranDetailsID": "388858",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.047000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1174",
+ "DetailID": "6830189",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1175",
+ "DetailID": "6830190",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1176",
+ "DetailID": "6830191",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1177",
+ "DetailID": "6830192",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1178",
+ "DetailID": "6830193",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1179",
+ "DetailID": "6830194",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1180",
+ "DetailID": "6830195",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1181",
+ "DetailID": "6830196",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1182",
+ "DetailID": "6830197",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1183",
+ "DetailID": "6830198",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1184",
+ "DetailID": "6830199",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1185",
+ "DetailID": "6830200",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1186",
+ "DetailID": "6830201",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1187",
+ "DetailID": "6830202",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1188",
+ "DetailID": "6830203",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1189",
+ "DetailID": "6830204",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1190",
+ "DetailID": "6830205",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1191",
+ "DetailID": "6830206",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1192",
+ "DetailID": "6830207",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1193",
+ "DetailID": "6830208",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1194",
+ "DetailID": "6830209",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1195",
+ "DetailID": "6830210",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1196",
+ "DetailID": "6830211",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1197",
+ "DetailID": "6830212",
+ "AccountTranDetailsID": "388857",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.043000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1149",
+ "DetailID": "6830164",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-12-03 00:00:00",
+ "Code": "27",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1150",
+ "DetailID": "6830165",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-11-03 00:00:00",
+ "Code": "57",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1151",
+ "DetailID": "6830166",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-10-03 00:00:00",
+ "Code": "27",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1152",
+ "DetailID": "6830167",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-09-03 00:00:00",
+ "Code": "26",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1153",
+ "DetailID": "6830168",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-08-03 00:00:00",
+ "Code": "27",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1154",
+ "DetailID": "6830169",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-07-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1155",
+ "DetailID": "6830170",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-06-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1156",
+ "DetailID": "6830171",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-05-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1157",
+ "DetailID": "6830172",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1158",
+ "DetailID": "6830173",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-03-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1159",
+ "DetailID": "6830174",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-02-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1160",
+ "DetailID": "6830175",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2021-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1161",
+ "DetailID": "6830176",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1162",
+ "DetailID": "6830177",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-11-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1163",
+ "DetailID": "6830178",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-10-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1164",
+ "DetailID": "6830179",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-09-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1165",
+ "DetailID": "6830180",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-08-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1166",
+ "DetailID": "6830181",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-07-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1167",
+ "DetailID": "6830182",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-06-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1168",
+ "DetailID": "6830183",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-05-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1169",
+ "DetailID": "6830184",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-04-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.037000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1170",
+ "DetailID": "6830185",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-03-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1171",
+ "DetailID": "6830186",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-02-03 00:00:00",
+ "Code": "XXX",
+ "EntryDate": "2022-01-14 11:16:54.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1172",
+ "DetailID": "6830187",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2020-01-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "1173",
+ "DetailID": "6830188",
+ "AccountTranDetailsID": "388843",
+ "MemberRefNo": "202201121116395000000",
+ "StartDate": "2019-12-03 00:00:00",
+ "Code": "0",
+ "EntryDate": "2022-01-14 11:16:54.040000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ }
+ ],
+ "consumer_enquiry_details": [
+ {
+ "id": "545",
+ "EnquiryID": "1326956",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-12 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "546",
+ "EnquiryID": "1326957",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "4000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "547",
+ "EnquiryID": "1326958",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-10 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "700000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "548",
+ "EnquiryID": "1326959",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-10 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \r\n\u2013 General",
+ "EnquiryAmount": "3500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "549",
+ "EnquiryID": "1326960",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-10 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "550",
+ "EnquiryID": "1326961",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-10 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "551",
+ "EnquiryID": "1326962",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "552",
+ "EnquiryID": "1326963",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "553",
+ "EnquiryID": "1326964",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "554",
+ "EnquiryID": "1326965",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "555",
+ "EnquiryID": "1326966",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "556",
+ "EnquiryID": "1326967",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "557",
+ "EnquiryID": "1326968",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-06 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "558",
+ "EnquiryID": "1326969",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-05 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "559",
+ "EnquiryID": "1326970",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-04 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "560",
+ "EnquiryID": "1326971",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2022-01-04 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "561",
+ "EnquiryID": "1326972",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-12-25 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "20000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "562",
+ "EnquiryID": "1326973",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-12-23 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Overdraft",
+ "EnquiryAmount": "20000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "563",
+ "EnquiryID": "1326974",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-11-06 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Auto Loan (Personal)",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "564",
+ "EnquiryID": "1326975",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-09-17 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "565",
+ "EnquiryID": "1326976",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-09-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "566",
+ "EnquiryID": "1326977",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-07-13 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "10000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "567",
+ "EnquiryID": "1326978",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-07-10 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "700000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "568",
+ "EnquiryID": "1326979",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-07-10 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "569",
+ "EnquiryID": "1326980",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-07-10 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "570",
+ "EnquiryID": "1326981",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-07-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "571",
+ "EnquiryID": "1326982",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-07-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "572",
+ "EnquiryID": "1326983",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-07-01 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "573",
+ "EnquiryID": "1326984",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-06-28 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "574",
+ "EnquiryID": "1326985",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-06-26 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "575",
+ "EnquiryID": "1326986",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-06-10 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "30000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "576",
+ "EnquiryID": "1326987",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-06-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 Secured",
+ "EnquiryAmount": "35000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "577",
+ "EnquiryID": "1326988",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-06-01 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Property Loan",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "578",
+ "EnquiryID": "1326989",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-05-31 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Auto Loan (Personal)",
+ "EnquiryAmount": "2190000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "579",
+ "EnquiryID": "1326990",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-05-14 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Consumer Loan",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "580",
+ "EnquiryID": "1326991",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-05-12 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "10000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "581",
+ "EnquiryID": "1326992",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-05-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Property Loan",
+ "EnquiryAmount": "6000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "582",
+ "EnquiryID": "1326993",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-04-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "583",
+ "EnquiryID": "1326994",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-03-24 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "30000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "584",
+ "EnquiryID": "1326995",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-03-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "585",
+ "EnquiryID": "1326996",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-03-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "39900000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "586",
+ "EnquiryID": "1326997",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-03-02 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "587",
+ "EnquiryID": "1326998",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-03-02 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "588",
+ "EnquiryID": "1326999",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-02-23 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "30000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "589",
+ "EnquiryID": "1327000",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-02-22 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "30000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "590",
+ "EnquiryID": "1327001",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-29 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "15000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "591",
+ "EnquiryID": "1327002",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-29 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "15000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "592",
+ "EnquiryID": "1327003",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "593",
+ "EnquiryID": "1327004",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "594",
+ "EnquiryID": "1327005",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-25 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "595",
+ "EnquiryID": "1327006",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-22 00:00:00",
+ "EnquiringMemberShortName": "MONEYWISE",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "596",
+ "EnquiryID": "1327007",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-21 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "597",
+ "EnquiryID": "1327008",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-21 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "3500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "598",
+ "EnquiryID": "1327009",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-20 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "599",
+ "EnquiryID": "1327010",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-20 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "600",
+ "EnquiryID": "1327011",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "601",
+ "EnquiryID": "1327012",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "602",
+ "EnquiryID": "1327013",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "603",
+ "EnquiryID": "1327014",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "3525000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "604",
+ "EnquiryID": "1327015",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "605",
+ "EnquiryID": "1327016",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-17 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "606",
+ "EnquiryID": "1327017",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "607",
+ "EnquiryID": "1327018",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "608",
+ "EnquiryID": "1327019",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "609",
+ "EnquiryID": "1327020",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2021-01-12 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "15000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "610",
+ "EnquiryID": "1327021",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-12-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "611",
+ "EnquiryID": "1327022",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-12-02 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "15000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "612",
+ "EnquiryID": "1327023",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-11-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "7000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "613",
+ "EnquiryID": "1327024",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-10-29 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "4000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "614",
+ "EnquiryID": "1327025",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-10-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "615",
+ "EnquiryID": "1327026",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-09-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "EnquiryAmount": "290369.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "616",
+ "EnquiryID": "1327027",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-09-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "617",
+ "EnquiryID": "1327028",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-08-25 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "618",
+ "EnquiryID": "1327029",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-08-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "1.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "619",
+ "EnquiryID": "1327030",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-08-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "577299.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "620",
+ "EnquiryID": "1327031",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-06-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "621",
+ "EnquiryID": "1327032",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2020-05-01 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "622",
+ "EnquiryID": "1327033",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-12-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "623",
+ "EnquiryID": "1327034",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-12-10 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "624",
+ "EnquiryID": "1327035",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-12-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "625",
+ "EnquiryID": "1327036",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-28 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "626",
+ "EnquiryID": "1327037",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-26 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "627",
+ "EnquiryID": "1327038",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-25 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "15000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "628",
+ "EnquiryID": "1327039",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-25 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "15000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "629",
+ "EnquiryID": "1327040",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-23 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "630",
+ "EnquiryID": "1327041",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-23 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "631",
+ "EnquiryID": "1327042",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-23 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "632",
+ "EnquiryID": "1327043",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-22 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "633",
+ "EnquiryID": "1327044",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-22 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "634",
+ "EnquiryID": "1327045",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-21 00:00:00",
+ "EnquiringMemberShortName": "MONEYWISE",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "635",
+ "EnquiryID": "1327046",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-21 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "636",
+ "EnquiryID": "1327047",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-20 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "637",
+ "EnquiryID": "1327048",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "638",
+ "EnquiryID": "1327049",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "639",
+ "EnquiryID": "1327050",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "640",
+ "EnquiryID": "1327051",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "641",
+ "EnquiryID": "1327052",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "642",
+ "EnquiryID": "1327053",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "643",
+ "EnquiryID": "1327054",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "644",
+ "EnquiryID": "1327055",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "645",
+ "EnquiryID": "1327056",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "646",
+ "EnquiryID": "1327057",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-14 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "647",
+ "EnquiryID": "1327058",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-13 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "648",
+ "EnquiryID": "1327059",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-13 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "649",
+ "EnquiryID": "1327060",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "650",
+ "EnquiryID": "1327061",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "651",
+ "EnquiryID": "1327062",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-11-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "652",
+ "EnquiryID": "1327063",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-09-23 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "100.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "653",
+ "EnquiryID": "1327064",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "654",
+ "EnquiryID": "1327065",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "2000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "655",
+ "EnquiryID": "1327066",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "656",
+ "EnquiryID": "1327067",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-16 00:00:00",
+ "EnquiringMemberShortName": "MONEYWISE",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "657",
+ "EnquiryID": "1327068",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "658",
+ "EnquiryID": "1327069",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "659",
+ "EnquiryID": "1327070",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "660",
+ "EnquiryID": "1327071",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-12 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "661",
+ "EnquiryID": "1327072",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "662",
+ "EnquiryID": "1327073",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-07-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "663",
+ "EnquiryID": "1327074",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-04-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "150000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "664",
+ "EnquiryID": "1327075",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-03-06 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "15000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "665",
+ "EnquiryID": "1327076",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-02-14 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 Secured",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "666",
+ "EnquiryID": "1327077",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2019-01-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "15000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "667",
+ "EnquiryID": "1327078",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-10-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Loan to Professional",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "668",
+ "EnquiryID": "1327079",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-10-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Loan to Professional",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "669",
+ "EnquiryID": "1327080",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-10-09 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "3500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "670",
+ "EnquiryID": "1327081",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-10-05 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "671",
+ "EnquiryID": "1327082",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-09-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 Priority Sector \u2013 Small Business",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "672",
+ "EnquiryID": "1327083",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-09-26 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "673",
+ "EnquiryID": "1327084",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-09-17 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "674",
+ "EnquiryID": "1327085",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-09-17 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "675",
+ "EnquiryID": "1327086",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-09-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "676",
+ "EnquiryID": "1327087",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-09-06 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "15000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "677",
+ "EnquiryID": "1327088",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-09-06 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "678",
+ "EnquiryID": "1327089",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-08-28 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "679",
+ "EnquiryID": "1327090",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-08-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "680",
+ "EnquiryID": "1327091",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-08-01 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "681",
+ "EnquiryID": "1327092",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-07-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "682",
+ "EnquiryID": "1327093",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-06-25 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "20000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "683",
+ "EnquiryID": "1327094",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-05-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "20000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "684",
+ "EnquiryID": "1327095",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-05-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "750000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "685",
+ "EnquiryID": "1327096",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-04-19 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "100.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "686",
+ "EnquiryID": "1327097",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-04-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "687",
+ "EnquiryID": "1327098",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-04-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "20000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "688",
+ "EnquiryID": "1327099",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2018-01-04 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "20000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "689",
+ "EnquiryID": "1327100",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-11-20 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Property Loan",
+ "EnquiryAmount": "10000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "690",
+ "EnquiryID": "1327101",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-11-09 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan - Unsecured",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "691",
+ "EnquiryID": "1327102",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-11-02 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "692",
+ "EnquiryID": "1327103",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-11-02 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "693",
+ "EnquiryID": "1327104",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-10-05 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1600000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "694",
+ "EnquiryID": "1327105",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-09-22 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "695",
+ "EnquiryID": "1327106",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-09-22 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "696",
+ "EnquiryID": "1327107",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-08-09 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "697",
+ "EnquiryID": "1327108",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-07-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "698",
+ "EnquiryID": "1327109",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-05-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "699",
+ "EnquiryID": "1327110",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2017-02-01 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "700",
+ "EnquiryID": "1327111",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2016-08-13 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "701",
+ "EnquiryID": "1327112",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2016-08-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "6300000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "702",
+ "EnquiryID": "1327113",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2016-07-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "703",
+ "EnquiryID": "1327114",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2016-06-23 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "704",
+ "EnquiryID": "1327115",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2016-04-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "705",
+ "EnquiryID": "1327116",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2016-02-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "1666500.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "706",
+ "EnquiryID": "1327117",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2016-01-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "707",
+ "EnquiryID": "1327118",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-12-31 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "15000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "708",
+ "EnquiryID": "1327119",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-12-02 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "709",
+ "EnquiryID": "1327120",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-11-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "6700000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "710",
+ "EnquiryID": "1327121",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-11-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "1.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "711",
+ "EnquiryID": "1327122",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-11-05 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "712",
+ "EnquiryID": "1327123",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-09-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "713",
+ "EnquiryID": "1327124",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-08-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "714",
+ "EnquiryID": "1327125",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-08-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "715",
+ "EnquiryID": "1327126",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-07-30 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "6000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "716",
+ "EnquiryID": "1327127",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-07-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "5500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "717",
+ "EnquiryID": "1327128",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-07-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "6300000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "718",
+ "EnquiryID": "1327129",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-07-14 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Auto Loan (Personal)",
+ "EnquiryAmount": "496000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "719",
+ "EnquiryID": "1327130",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-07-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "7000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "720",
+ "EnquiryID": "1327131",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-07-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "7000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "721",
+ "EnquiryID": "1327132",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-06-26 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "722",
+ "EnquiryID": "1327133",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-06-25 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "723",
+ "EnquiryID": "1327134",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-06-20 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "724",
+ "EnquiryID": "1327135",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-06-09 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "725",
+ "EnquiryID": "1327136",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-06-02 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "726",
+ "EnquiryID": "1327137",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-05-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "50000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "727",
+ "EnquiryID": "1327138",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-05-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "728",
+ "EnquiryID": "1327139",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-05-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "729",
+ "EnquiryID": "1327140",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-04-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "12500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "730",
+ "EnquiryID": "1327141",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-04-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "731",
+ "EnquiryID": "1327142",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-04-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "732",
+ "EnquiryID": "1327143",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-03-29 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "733",
+ "EnquiryID": "1327144",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-03-09 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "734",
+ "EnquiryID": "1327145",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-02-23 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "735",
+ "EnquiryID": "1327146",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-02-23 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Gold Loan",
+ "EnquiryAmount": "350000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "736",
+ "EnquiryID": "1327147",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-02-04 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "25000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "737",
+ "EnquiryID": "1327148",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-01-24 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "738",
+ "EnquiryID": "1327149",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-01-14 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "739",
+ "EnquiryID": "1327150",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2015-01-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "11000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "740",
+ "EnquiryID": "1327151",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-12-13 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "5000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "741",
+ "EnquiryID": "1327152",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-11-17 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "15000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "742",
+ "EnquiryID": "1327153",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-11-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "743",
+ "EnquiryID": "1327154",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-11-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "1000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "744",
+ "EnquiryID": "1327155",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-10-28 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "745",
+ "EnquiryID": "1327156",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-09-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Gold Loan",
+ "EnquiryAmount": "300460.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "746",
+ "EnquiryID": "1327157",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-08-29 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "6500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "747",
+ "EnquiryID": "1327158",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-08-14 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Gold Loan",
+ "EnquiryAmount": "310294.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "748",
+ "EnquiryID": "1327159",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-08-14 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Gold Loan",
+ "EnquiryAmount": "310294.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "749",
+ "EnquiryID": "1327160",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-07-09 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "750",
+ "EnquiryID": "1327161",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-05-24 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "751",
+ "EnquiryID": "1327162",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-05-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "3000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "752",
+ "EnquiryID": "1327163",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-05-13 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "753",
+ "EnquiryID": "1327164",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-05-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "754",
+ "EnquiryID": "1327165",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-04-30 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "755",
+ "EnquiryID": "1327166",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-04-28 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "7200000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "756",
+ "EnquiryID": "1327167",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-04-17 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "757",
+ "EnquiryID": "1327168",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-04-15 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "2500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "758",
+ "EnquiryID": "1327169",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-04-03 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "6000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "759",
+ "EnquiryID": "1327170",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-03-28 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "8000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "760",
+ "EnquiryID": "1327171",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-03-26 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "9500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "761",
+ "EnquiryID": "1327172",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-03-11 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "6000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "762",
+ "EnquiryID": "1327173",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-03-06 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Gold Loan",
+ "EnquiryAmount": "350000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "763",
+ "EnquiryID": "1327174",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-03-05 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Personal Loan",
+ "EnquiryAmount": "200000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "764",
+ "EnquiryID": "1327175",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-02-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "1500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "765",
+ "EnquiryID": "1327176",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2014-01-30 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "6000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "766",
+ "EnquiryID": "1327177",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-11-29 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "767",
+ "EnquiryID": "1327178",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-11-21 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "1800000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "768",
+ "EnquiryID": "1327179",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-11-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "50000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "769",
+ "EnquiryID": "1327180",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-11-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "770",
+ "EnquiryID": "1327181",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-03-18 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "8000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "771",
+ "EnquiryID": "1327182",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-03-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "772",
+ "EnquiryID": "1327183",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-02-22 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Other",
+ "EnquiryAmount": "8000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "773",
+ "EnquiryID": "1327184",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-02-12 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "50000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "774",
+ "EnquiryID": "1327185",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-02-08 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "8000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "775",
+ "EnquiryID": "1327186",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-02-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "8500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "776",
+ "EnquiryID": "1327187",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-02-02 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "8500000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "777",
+ "EnquiryID": "1327188",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-01-16 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "8000000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "778",
+ "EnquiryID": "1327189",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-01-07 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "779",
+ "EnquiryID": "1327190",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2013-01-05 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "8400000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "780",
+ "EnquiryID": "1327191",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2012-12-28 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "781",
+ "EnquiryID": "1327192",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2012-12-27 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Housing Loan",
+ "EnquiryAmount": "8600000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "782",
+ "EnquiryID": "1327193",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2012-12-05 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "80000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "783",
+ "EnquiryID": "1327194",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2012-11-05 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "1000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "784",
+ "EnquiryID": "1327195",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2012-10-05 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Credit Card",
+ "EnquiryAmount": "50000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "785",
+ "EnquiryID": "1327196",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2012-08-24 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Two-wheeler Loan",
+ "EnquiryAmount": "35000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "786",
+ "EnquiryID": "1327197",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2012-06-29 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Business Loan \u2013 General",
+ "EnquiryAmount": "10000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ },
+ {
+ "id": "787",
+ "EnquiryID": "1327198",
+ "MemberReferenceNumber": "202201121116395000000",
+ "DateOfEnquiry": "2012-02-21 00:00:00",
+ "EnquiringMemberShortName": "NOT DISCLOSED",
+ "EnquiryPurpose": "Auto Loan (Personal)",
+ "EnquiryAmount": "100000.0000",
+ "createdAt": "None",
+ "updatedAt": "None",
+ "createdby": "None",
+ "updatedby": "None"
+ }
+ ]
+ },
+ "masters": {
+ "dpd_month_buckets": [
+ {
+ "id": "1",
+ "name": "0+",
+ "range_from": "1",
+ "range_to": "29",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 11:10:13.110000",
+ "updatedon": "2022-04-15 11:10:13.110000"
+ },
+ {
+ "id": "2",
+ "name": "30+",
+ "range_from": "30",
+ "range_to": "59",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ },
+ {
+ "id": "3",
+ "name": "60+",
+ "range_from": "60",
+ "range_to": "89",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ },
+ {
+ "id": "4",
+ "name": "90+",
+ "range_from": "90",
+ "range_to": "179",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ },
+ {
+ "id": "5",
+ "name": "180+",
+ "range_from": "None",
+ "range_to": "180",
+ "type": "DPD",
+ "isactive": "True",
+ "createdon": "2022-04-15 14:42:34.837000",
+ "updatedon": "2022-04-15 14:42:34.837000"
+ }
+ ],
+ "sanction_summary_month_buckets": [
+ {
+ "id": "6",
+ "name": "1",
+ "range_from": "1",
+ "range_to": "1",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "7",
+ "name": "2-3",
+ "range_from": "2",
+ "range_to": "3",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "8",
+ "name": "4-6",
+ "range_from": "4",
+ "range_to": "6",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "9",
+ "name": "7-12",
+ "range_from": "7",
+ "range_to": "12",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "10",
+ "name": "13-24",
+ "range_from": "13",
+ "range_to": "24",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "11",
+ "name": "26-36",
+ "range_from": "25",
+ "range_to": "36",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ },
+ {
+ "id": "12",
+ "name": ">36",
+ "range_from": "None",
+ "range_to": "36",
+ "type": "SAN_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:18:34.480000",
+ "updatedon": "2022-04-16 08:18:34.480000"
+ }
+ ],
+ "enquiry_summary_month_buckets": [
+ {
+ "id": "13",
+ "name": "1",
+ "range_from": "1",
+ "range_to": "1",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "14",
+ "name": "2-3",
+ "range_from": "2",
+ "range_to": "3",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "15",
+ "name": "4-6",
+ "range_from": "4",
+ "range_to": "6",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "16",
+ "name": "7-12",
+ "range_from": "7",
+ "range_to": "12",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "17",
+ "name": "13-24",
+ "range_from": "13",
+ "range_to": "24",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "18",
+ "name": "26-36",
+ "range_from": "25",
+ "range_to": "36",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ },
+ {
+ "id": "19",
+ "name": ">36",
+ "range_from": "None",
+ "range_to": "36",
+ "type": "ENQ_SUM",
+ "isactive": "True",
+ "createdon": "2022-04-16 08:19:01.630000",
+ "updatedon": "2022-04-16 08:19:01.630000"
+ }
+ ]
+ }
+ }
+
diff --git a/logs/sample.log b/logs/sample.log
new file mode 100644
index 0000000..436f353
--- /dev/null
+++ b/logs/sample.log
@@ -0,0 +1,308 @@
+2022-06-28 22:47:59,875 INFO : * Restarting with stat
+2022-06-28 22:48:01,846 WARNING : * Debugger is active!
+2022-06-28 22:48:01,863 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:48:01,883 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:48:14,902 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 22:48:22,597 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 22:48:22,997 INFO : 127.0.0.1 - - [28/Jun/2022 22:48:22] "[37mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 200 -
+2022-06-28 22:49:38,798 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 22:49:39,023 INFO : * Restarting with stat
+2022-06-28 22:49:41,127 WARNING : * Debugger is active!
+2022-06-28 22:49:41,177 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:49:41,217 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:50:46,172 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 22:50:46,357 INFO : * Restarting with stat
+2022-06-28 22:50:48,799 WARNING : * Debugger is active!
+2022-06-28 22:50:48,820 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:50:48,840 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:51:21,922 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 22:51:22,141 INFO : * Restarting with stat
+2022-06-28 22:51:24,208 WARNING : * Debugger is active!
+2022-06-28 22:51:24,228 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:51:24,245 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:51:44,432 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\Controllers\\CIBILController.py', reloading
+2022-06-28 22:51:44,592 INFO : * Restarting with stat
+2022-06-28 22:51:47,553 WARNING : * Debugger is active!
+2022-06-28 22:51:47,577 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:51:47,596 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:51:47,762 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 22:51:55,186 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 22:51:55,587 INFO : 127.0.0.1 - - [28/Jun/2022 22:51:55] "[37mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 200 -
+2022-06-28 22:53:29,120 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 22:53:29,296 INFO : * Restarting with stat
+2022-06-28 22:53:31,454 WARNING : * Debugger is active!
+2022-06-28 22:53:31,473 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:53:31,494 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:53:37,277 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 22:53:45,930 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 22:53:46,431 INFO : 127.0.0.1 - - [28/Jun/2022 22:53:46] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 22:53:47,158 INFO : 127.0.0.1 - - [28/Jun/2022 22:53:47] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 22:53:47,187 INFO : 127.0.0.1 - - [28/Jun/2022 22:53:47] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 22:53:47,191 INFO : 127.0.0.1 - - [28/Jun/2022 22:53:47] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 22:53:47,285 INFO : 127.0.0.1 - - [28/Jun/2022 22:53:47] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1[0m" 200 -
+2022-06-28 22:53:47,755 INFO : 127.0.0.1 - - [28/Jun/2022 22:53:47] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 22:54:49,150 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\Models\\intermediate_tables.py', reloading
+2022-06-28 22:54:49,335 INFO : * Restarting with stat
+2022-06-28 22:54:51,997 WARNING : * Debugger is active!
+2022-06-28 22:54:52,020 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:54:52,044 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:54:52,107 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 22:55:00,931 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 22:55:01,864 INFO : 127.0.0.1 - - [28/Jun/2022 22:55:01] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 22:55:02,501 INFO : 127.0.0.1 - - [28/Jun/2022 22:55:02] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 22:55:02,505 INFO : 127.0.0.1 - - [28/Jun/2022 22:55:02] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 22:55:02,521 INFO : 127.0.0.1 - - [28/Jun/2022 22:55:02] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 22:55:02,899 INFO : 127.0.0.1 - - [28/Jun/2022 22:55:02] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 22:56:00,755 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\Models\\intermediate_tables.py', reloading
+2022-06-28 22:56:00,993 INFO : * Restarting with stat
+2022-06-28 22:56:03,578 WARNING : * Debugger is active!
+2022-06-28 22:56:03,600 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:56:03,620 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:56:22,930 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilDataService.py', reloading
+2022-06-28 22:56:23,196 INFO : * Restarting with stat
+2022-06-28 22:56:25,621 WARNING : * Debugger is active!
+2022-06-28 22:56:25,641 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:56:25,659 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:56:37,291 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 22:56:45,051 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 22:56:45,507 INFO : 127.0.0.1 - - [28/Jun/2022 22:56:45] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 22:56:46,155 INFO : 127.0.0.1 - - [28/Jun/2022 22:56:46] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 22:56:46,187 INFO : 127.0.0.1 - - [28/Jun/2022 22:56:46] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 22:56:46,194 INFO : 127.0.0.1 - - [28/Jun/2022 22:56:46] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 22:56:46,473 INFO : 127.0.0.1 - - [28/Jun/2022 22:56:46] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 22:58:15,963 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\Models\\intermediate_tables.py', reloading
+2022-06-28 22:58:16,198 INFO : * Restarting with stat
+2022-06-28 22:58:18,717 WARNING : * Debugger is active!
+2022-06-28 22:58:18,740 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:58:18,758 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:58:27,323 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 22:58:35,570 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 22:58:38,125 INFO : 127.0.0.1 - - [28/Jun/2022 22:58:38] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 22:58:38,708 INFO : 127.0.0.1 - - [28/Jun/2022 22:58:38] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 22:58:38,719 INFO : 127.0.0.1 - - [28/Jun/2022 22:58:38] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 22:58:38,739 INFO : 127.0.0.1 - - [28/Jun/2022 22:58:38] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 22:58:38,948 INFO : 127.0.0.1 - - [28/Jun/2022 22:58:38] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 22:59:07,633 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilDataService.py', reloading
+2022-06-28 22:59:07,876 INFO : * Restarting with stat
+2022-06-28 22:59:11,231 WARNING : * Debugger is active!
+2022-06-28 22:59:11,249 INFO : * Debugger PIN: 245-792-354
+2022-06-28 22:59:11,274 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 22:59:11,412 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 22:59:19,561 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 22:59:21,784 INFO : 127.0.0.1 - - [28/Jun/2022 22:59:21] "[37mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 200 -
+2022-06-28 23:00:15,830 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 23:00:16,010 INFO : * Restarting with stat
+2022-06-28 23:00:18,217 WARNING : * Debugger is active!
+2022-06-28 23:00:18,233 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:00:18,255 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:01:19,971 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\DpdCalculationService.py', reloading
+2022-06-28 23:01:20,128 INFO : * Restarting with stat
+2022-06-28 23:01:22,887 WARNING : * Debugger is active!
+2022-06-28 23:01:22,940 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:01:22,979 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:02:07,120 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\DpdCalculationService.py', reloading
+2022-06-28 23:02:07,302 INFO : * Restarting with stat
+2022-06-28 23:02:10,764 WARNING : * Debugger is active!
+2022-06-28 23:02:10,818 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:02:10,846 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:05:30,173 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 23:05:30,342 INFO : * Restarting with stat
+2022-06-28 23:05:32,948 WARNING : * Debugger is active!
+2022-06-28 23:05:32,964 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:05:32,989 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:05:46,743 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 23:05:47,011 INFO : * Restarting with stat
+2022-06-28 23:05:49,396 WARNING : * Debugger is active!
+2022-06-28 23:05:49,415 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:05:49,435 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:05:51,867 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:05:59,563 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:06:01,878 INFO : 127.0.0.1 - - [28/Jun/2022 23:06:01] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:06:02,523 INFO : 127.0.0.1 - - [28/Jun/2022 23:06:02] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:06:02,548 INFO : 127.0.0.1 - - [28/Jun/2022 23:06:02] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:06:02,557 INFO : 127.0.0.1 - - [28/Jun/2022 23:06:02] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:06:02,620 INFO : 127.0.0.1 - - [28/Jun/2022 23:06:02] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1[0m" 200 -
+2022-06-28 23:06:02,927 INFO : 127.0.0.1 - - [28/Jun/2022 23:06:02] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:07:11,579 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilDataService.py', reloading
+2022-06-28 23:07:11,829 INFO : * Restarting with stat
+2022-06-28 23:07:14,184 WARNING : * Debugger is active!
+2022-06-28 23:07:14,205 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:07:14,226 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:08:08,919 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:08:17,186 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:08:20,722 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:20] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:08:21,341 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:21] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:08:21,341 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:21] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:08:21,343 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:21] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:08:21,642 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:21] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:08:43,003 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilDataService.py', reloading
+2022-06-28 23:08:43,262 INFO : * Restarting with stat
+2022-06-28 23:08:45,743 WARNING : * Debugger is active!
+2022-06-28 23:08:45,766 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:08:45,785 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:08:45,873 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:08:53,642 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:08:56,801 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:56] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:08:57,473 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:57] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:08:57,502 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:57] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:08:57,504 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:57] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:08:57,601 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:57] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:08:57,784 INFO : 127.0.0.1 - - [28/Jun/2022 23:08:57] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:09:20,775 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilDataService.py', reloading
+2022-06-28 23:09:21,016 INFO : * Restarting with stat
+2022-06-28 23:09:23,410 WARNING : * Debugger is active!
+2022-06-28 23:09:23,430 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:09:23,448 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:09:26,477 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:09:36,847 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:09:39,519 INFO : 127.0.0.1 - - [28/Jun/2022 23:09:39] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:09:40,177 INFO : 127.0.0.1 - - [28/Jun/2022 23:09:40] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:09:40,191 INFO : 127.0.0.1 - - [28/Jun/2022 23:09:40] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:09:40,230 INFO : 127.0.0.1 - - [28/Jun/2022 23:09:40] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:09:40,473 INFO : 127.0.0.1 - - [28/Jun/2022 23:09:40] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:10:05,228 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilDataService.py', reloading
+2022-06-28 23:10:05,419 INFO : * Restarting with stat
+2022-06-28 23:10:08,124 WARNING : * Debugger is active!
+2022-06-28 23:10:08,147 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:10:08,174 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:10:08,349 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:10:15,967 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:10:18,672 INFO : 127.0.0.1 - - [28/Jun/2022 23:10:18] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:10:19,418 INFO : 127.0.0.1 - - [28/Jun/2022 23:10:19] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:10:19,443 INFO : 127.0.0.1 - - [28/Jun/2022 23:10:19] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:10:19,467 INFO : 127.0.0.1 - - [28/Jun/2022 23:10:19] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:10:19,835 INFO : 127.0.0.1 - - [28/Jun/2022 23:10:19] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:12:45,584 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:12:48,311 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:12:50,185 INFO : 127.0.0.1 - - [28/Jun/2022 23:12:50] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:12:50,588 INFO : 127.0.0.1 - - [28/Jun/2022 23:12:50] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:12:50,594 INFO : 127.0.0.1 - - [28/Jun/2022 23:12:50] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:12:50,596 INFO : 127.0.0.1 - - [28/Jun/2022 23:12:50] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:12:50,923 INFO : 127.0.0.1 - - [28/Jun/2022 23:12:50] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:13:10,601 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilDataService.py', reloading
+2022-06-28 23:13:10,952 INFO : * Restarting with stat
+2022-06-28 23:13:14,649 WARNING : * Debugger is active!
+2022-06-28 23:13:14,694 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:13:14,725 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:13:14,733 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:13:22,136 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:13:26,657 INFO : 127.0.0.1 - - [28/Jun/2022 23:13:26] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:13:27,435 INFO : 127.0.0.1 - - [28/Jun/2022 23:13:27] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:13:27,452 INFO : 127.0.0.1 - - [28/Jun/2022 23:13:27] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:13:27,511 INFO : 127.0.0.1 - - [28/Jun/2022 23:13:27] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:13:27,765 INFO : 127.0.0.1 - - [28/Jun/2022 23:13:27] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:17:49,169 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\Models\\intermediate_tables.py', reloading
+2022-06-28 23:17:49,404 INFO : * Restarting with stat
+2022-06-28 23:17:52,761 WARNING : * Debugger is active!
+2022-06-28 23:17:52,786 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:17:52,805 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:17:57,641 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:18:06,302 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:18:10,382 INFO : 127.0.0.1 - - [28/Jun/2022 23:18:10] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:18:11,142 INFO : 127.0.0.1 - - [28/Jun/2022 23:18:11] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:18:11,142 INFO : 127.0.0.1 - - [28/Jun/2022 23:18:11] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:18:11,145 INFO : 127.0.0.1 - - [28/Jun/2022 23:18:11] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:18:11,562 INFO : 127.0.0.1 - - [28/Jun/2022 23:18:11] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:18:37,988 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 23:18:38,214 INFO : * Restarting with stat
+2022-06-28 23:18:40,938 WARNING : * Debugger is active!
+2022-06-28 23:18:40,957 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:18:40,975 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:18:47,757 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:18:56,397 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:19:00,260 INFO : 127.0.0.1 - - [28/Jun/2022 23:19:00] "[37mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 200 -
+2022-06-28 23:19:34,776 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 23:19:35,003 INFO : * Restarting with stat
+2022-06-28 23:19:37,794 WARNING : * Debugger is active!
+2022-06-28 23:19:37,814 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:19:37,841 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:19:59,338 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilDataService.py', reloading
+2022-06-28 23:19:59,567 INFO : * Restarting with stat
+2022-06-28 23:20:01,964 WARNING : * Debugger is active!
+2022-06-28 23:20:01,988 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:20:02,008 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:21:07,814 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilSummaryDataUpdateService.py', reloading
+2022-06-28 23:21:08,041 INFO : * Restarting with stat
+2022-06-28 23:21:11,062 WARNING : * Debugger is active!
+2022-06-28 23:21:11,089 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:21:11,109 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:24:04,342 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilSummaryDataUpdateService.py', reloading
+2022-06-28 23:24:04,559 INFO : * Restarting with stat
+2022-06-28 23:24:07,390 WARNING : * Debugger is active!
+2022-06-28 23:24:07,412 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:24:07,432 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:25:21,575 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 23:25:21,793 INFO : * Restarting with stat
+2022-06-28 23:25:24,119 WARNING : * Debugger is active!
+2022-06-28 23:25:24,141 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:25:24,160 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:25:48,175 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 23:25:48,449 INFO : * Restarting with stat
+2022-06-28 23:25:50,838 WARNING : * Debugger is active!
+2022-06-28 23:25:50,860 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:25:50,878 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:27:46,571 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:27:55,390 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:27:58,299 INFO : 127.0.0.1 - - [28/Jun/2022 23:27:58] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:27:59,294 INFO : 127.0.0.1 - - [28/Jun/2022 23:27:59] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:27:59,303 INFO : 127.0.0.1 - - [28/Jun/2022 23:27:59] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:27:59,327 INFO : 127.0.0.1 - - [28/Jun/2022 23:27:59] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:27:59,434 INFO : 127.0.0.1 - - [28/Jun/2022 23:27:59] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1[0m" 200 -
+2022-06-28 23:27:59,770 INFO : 127.0.0.1 - - [28/Jun/2022 23:27:59] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:31:13,905 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\DpdCalculationService.py', reloading
+2022-06-28 23:31:14,232 INFO : * Restarting with stat
+2022-06-28 23:31:17,244 WARNING : * Debugger is active!
+2022-06-28 23:31:17,274 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:31:17,303 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:31:37,756 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 23:31:37,947 INFO : * Restarting with stat
+2022-06-28 23:31:40,474 WARNING : * Debugger is active!
+2022-06-28 23:31:40,562 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:31:40,614 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:31:41,084 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:31:48,718 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:31:51,650 INFO : 127.0.0.1 - - [28/Jun/2022 23:31:51] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:31:52,390 INFO : 127.0.0.1 - - [28/Jun/2022 23:31:52] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:31:52,442 INFO : 127.0.0.1 - - [28/Jun/2022 23:31:52] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:31:52,575 INFO : 127.0.0.1 - - [28/Jun/2022 23:31:52] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:31:53,212 INFO : 127.0.0.1 - - [28/Jun/2022 23:31:53] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:37:54,616 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\DpdCalculationService.py', reloading
+2022-06-28 23:37:54,841 INFO : * Restarting with stat
+2022-06-28 23:37:58,818 WARNING : * Debugger is active!
+2022-06-28 23:37:58,872 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:37:58,908 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:37:59,041 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:38:06,626 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:38:09,814 INFO : 127.0.0.1 - - [28/Jun/2022 23:38:09] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:38:10,868 INFO : 127.0.0.1 - - [28/Jun/2022 23:38:10] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:38:10,914 INFO : 127.0.0.1 - - [28/Jun/2022 23:38:10] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:38:10,945 INFO : 127.0.0.1 - - [28/Jun/2022 23:38:10] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:38:11,448 INFO : 127.0.0.1 - - [28/Jun/2022 23:38:11] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:39:23,038 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\DpdCalculationService.py', reloading
+2022-06-28 23:39:23,233 INFO : * Restarting with stat
+2022-06-28 23:39:26,051 WARNING : * Debugger is active!
+2022-06-28 23:39:26,116 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:39:26,152 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:39:26,271 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:39:33,965 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:39:39,134 INFO : TOTAL ACTIVE&CLOSE LOANS - 68
+2022-06-28 23:39:39,483 INFO : 127.0.0.1 - - [28/Jun/2022 23:39:39] "[37mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 200 -
+2022-06-28 23:40:20,833 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilBusinessOperationService.py', reloading
+2022-06-28 23:40:21,022 INFO : * Restarting with stat
+2022-06-28 23:40:23,766 WARNING : * Debugger is active!
+2022-06-28 23:40:23,797 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:40:23,829 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
+2022-06-28 23:41:11,060 INFO : LOSID - MW112233, REFNO - 202201121116395000000, CTYPE - 2
+2022-06-28 23:41:16,239 INFO : TOTAL CREDIT FACILITY - 68 FOUND
+2022-06-28 23:41:18,813 INFO : TOTAL ACTIVE&CLOSED LOANS - 68
+2022-06-28 23:41:57,978 INFO : 127.0.0.1 - - [28/Jun/2022 23:41:57] "[35m[1mGET /api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=2&action=1 HTTP/1.1[0m" 500 -
+2022-06-28 23:41:58,903 INFO : 127.0.0.1 - - [28/Jun/2022 23:41:58] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 200 -
+2022-06-28 23:41:58,951 INFO : 127.0.0.1 - - [28/Jun/2022 23:41:58] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 200 -
+2022-06-28 23:41:58,961 INFO : 127.0.0.1 - - [28/Jun/2022 23:41:58] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=jquery.js HTTP/1.1[0m" 200 -
+2022-06-28 23:41:59,416 INFO : 127.0.0.1 - - [28/Jun/2022 23:41:59] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1[0m" 200 -
+2022-06-28 23:41:59,741 INFO : 127.0.0.1 - - [28/Jun/2022 23:41:59] "[37mGET /api/cibil?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 200 -
+2022-06-28 23:42:44,033 INFO : * Detected change in 'C:\\Users\\Venba\\AppData\\Local\\Programs\\Python\\pyenv\\flask_rest\\services\\CibilSummaryDataUpdateService.py', reloading
+2022-06-28 23:42:44,229 INFO : * Restarting with stat
+2022-06-28 23:42:47,000 WARNING : * Debugger is active!
+2022-06-28 23:42:47,020 INFO : * Debugger PIN: 245-792-354
+2022-06-28 23:42:47,038 INFO : * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
diff --git a/oldweb.config b/oldweb.config
new file mode 100644
index 0000000..604ee69
--- /dev/null
+++ b/oldweb.config
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/oldwfastcgi.py b/oldwfastcgi.py
new file mode 100644
index 0000000..5c86e82
--- /dev/null
+++ b/oldwfastcgi.py
@@ -0,0 +1,914 @@
+# Python Tools for Visual Studio
+# Copyright(c) Microsoft Corporation
+# All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the License); you may not use
+# this file except in compliance with the License. You may obtain a copy of the
+# License at http://www.apache.org/licenses/LICENSE-2.0
+#
+# THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS
+# OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY
+# IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
+# MERCHANTABLITY OR NON-INFRINGEMENT.
+#
+# See the Apache Version 2.0 License for specific language governing
+# permissions and limitations under the License.
+from __future__ import absolute_import, print_function, with_statement
+
+__author__ = "Microsoft Corporation "
+__version__ = "3.0.0"
+
+import ctypes
+import datetime
+import os
+import re
+import struct
+import sys
+import traceback
+from xml.dom import minidom
+
+try:
+ from cStringIO import StringIO
+ BytesIO = StringIO
+except ImportError:
+ from io import StringIO, BytesIO
+try:
+ from thread import start_new_thread
+except ImportError:
+ from _thread import start_new_thread
+
+if sys.version_info[0] == 3:
+ def to_str(value):
+ return value.decode(sys.getfilesystemencoding())
+else:
+ def to_str(value):
+ return value.encode(sys.getfilesystemencoding())
+
+
+# http://www.fastcgi.com/devkit/doc/fcgi-spec.html#S3
+
+FCGI_VERSION_1 = 1
+FCGI_HEADER_LEN = 8
+
+FCGI_BEGIN_REQUEST = 1
+FCGI_ABORT_REQUEST = 2
+FCGI_END_REQUEST = 3
+FCGI_PARAMS = 4
+FCGI_STDIN = 5
+FCGI_STDOUT = 6
+FCGI_STDERR = 7
+FCGI_DATA = 8
+FCGI_GET_VALUES = 9
+FCGI_GET_VALUES_RESULT = 10
+FCGI_UNKNOWN_TYPE = 11
+FCGI_MAXTYPE = FCGI_UNKNOWN_TYPE
+
+FCGI_NULL_REQUEST_ID = 0
+
+FCGI_KEEP_CONN = 1
+
+FCGI_RESPONDER = 1
+FCGI_AUTHORIZER = 2
+FCGI_FILTER = 3
+
+FCGI_REQUEST_COMPLETE = 0
+FCGI_CANT_MPX_CONN = 1
+FCGI_OVERLOADED = 2
+FCGI_UNKNOWN_ROLE = 3
+
+FCGI_MAX_CONNS = "FCGI_MAX_CONNS"
+FCGI_MAX_REQS = "FCGI_MAX_REQS"
+FCGI_MPXS_CONNS = "FCGI_MPXS_CONNS"
+
+class FastCgiRecord(object):
+ """Represents a FastCgiRecord. Encapulates the type, role, flags. Holds
+ onto the params which we will receive and update later."""
+ def __init__(self, type, req_id, role, flags):
+ self.type = type
+ self.req_id = req_id
+ self.role = role
+ self.flags = flags
+ self.params = {}
+
+ def __repr__(self):
+ return '' % (self.type,
+ self.req_id,
+ self.role,
+ self.flags)
+
+#typedef struct {
+# unsigned char version;
+# unsigned char type;
+# unsigned char requestIdB1;
+# unsigned char requestIdB0;
+# unsigned char contentLengthB1;
+# unsigned char contentLengthB0;
+# unsigned char paddingLength;
+# unsigned char reserved;
+# unsigned char contentData[contentLength];
+# unsigned char paddingData[paddingLength];
+#} FCGI_Record;
+
+class _ExitException(Exception):
+ pass
+
+if sys.version_info[0] >= 3:
+ # indexing into byte strings gives us an int, so
+ # ord is unnecessary on Python 3
+ def ord(x):
+ return x
+ def chr(x):
+ return bytes((x, ))
+
+ def wsgi_decode(x):
+ return x.decode('iso-8859-1')
+ def wsgi_encode(x):
+ return x.encode('iso-8859-1')
+
+ def fs_encode(x):
+ return x
+
+ def exception_with_traceback(exc_value, exc_tb):
+ return exc_value.with_traceback(exc_tb)
+
+ zero_bytes = bytes
+else:
+ # Replace the builtin open with one that supports an encoding parameter
+ from codecs import open
+
+ def wsgi_decode(x):
+ return x
+ def wsgi_encode(x):
+ return x
+
+ def fs_encode(x):
+ return x if isinstance(x, str) else x.encode(sys.getfilesystemencoding())
+
+ def exception_with_traceback(exc_value, exc_tb):
+ # x.with_traceback() is not supported on 2.x
+ return exc_value
+
+ bytes = str
+
+ def zero_bytes(length):
+ return '\x00' * length
+
+def read_fastcgi_record(stream):
+ """reads the main fast cgi record"""
+ data = stream.read(8) # read record
+ if not data:
+ # no more data, our other process must have died...
+ raise _ExitException()
+
+ fcgi_ver, reqtype, req_id, content_size, padding_len, _ = struct.unpack('>BBHHBB', data)
+
+ content = stream.read(content_size) # read content
+ stream.read(padding_len)
+
+ if fcgi_ver != FCGI_VERSION_1:
+ raise Exception('Unknown fastcgi version %s' % fcgi_ver)
+
+ processor = REQUEST_PROCESSORS.get(reqtype)
+ if processor is not None:
+ return processor(stream, req_id, content)
+
+ # unknown type requested, send response
+ log('Unknown request type %s' % reqtype)
+ send_response(stream, req_id, FCGI_UNKNOWN_TYPE, chr(reqtype) + zero_bytes(7))
+ return None
+
+
+def read_fastcgi_begin_request(stream, req_id, content):
+ """reads the begin request body and updates our _REQUESTS table to include
+ the new request"""
+ # typedef struct {
+ # unsigned char roleB1;
+ # unsigned char roleB0;
+ # unsigned char flags;
+ # unsigned char reserved[5];
+ # } FCGI_BeginRequestBody;
+
+ # TODO: Ignore request if it exists
+ res = FastCgiRecord(
+ FCGI_BEGIN_REQUEST,
+ req_id,
+ (ord(content[0]) << 8) | ord(content[1]), # role
+ ord(content[2]), # flags
+ )
+ _REQUESTS[req_id] = res
+
+def read_encoded_int(content, offset):
+ i = struct.unpack_from('>B', content, offset)[0]
+
+ if i < 0x80:
+ return offset + 1, i
+
+ return offset + 4, struct.unpack_from('>I', content, offset)[0] & ~0x80000000
+
+
+def read_fastcgi_keyvalue_pairs(content, offset):
+ """Reads a FastCGI key/value pair stream"""
+
+ offset, name_len = read_encoded_int(content, offset)
+ offset, value_len = read_encoded_int(content, offset)
+
+ name = content[offset:(offset + name_len)]
+ offset += name_len
+
+ value = content[offset:(offset + value_len)]
+ offset += value_len
+
+ return offset, name, value
+
+
+def get_encoded_int(i):
+ """Writes the length of a single name for a key or value in a key/value
+ stream"""
+ if i <= 0x7f:
+ return struct.pack('>B', i)
+ elif i < 0x80000000:
+ return struct.pack('>I', i | 0x80000000)
+ else:
+ raise ValueError('cannot encode value %s (%x) because it is too large' % (i, i))
+
+
+def write_fastcgi_keyvalue_pairs(pairs):
+ """Creates a FastCGI key/value stream and returns it as a byte string"""
+ parts = []
+ for raw_key, raw_value in pairs.items():
+ key = wsgi_encode(raw_key)
+ value = wsgi_encode(raw_value)
+
+ parts.append(get_encoded_int(len(key)))
+ parts.append(get_encoded_int(len(value)))
+ parts.append(key)
+ parts.append(value)
+
+ return bytes().join(parts)
+
+# Keys in this set will be stored in the record without modification but with a
+# 'wsgi.' prefix. The original key will have the decoded version.
+# (Following mod_wsgi from http://wsgi.readthedocs.org/en/latest/python3.html)
+RAW_VALUE_NAMES = {
+ 'SCRIPT_NAME' : 'wsgi.script_name',
+ 'PATH_INFO' : 'wsgi.path_info',
+ 'QUERY_STRING' : 'wsgi.query_string',
+ 'HTTP_X_ORIGINAL_URL' : 'wfastcgi.http_x_original_url',
+}
+
+def read_fastcgi_params(stream, req_id, content):
+ if not content:
+ return None
+
+ offset = 0
+ res = _REQUESTS[req_id].params
+ while offset < len(content):
+ offset, name, value = read_fastcgi_keyvalue_pairs(content, offset)
+ name = wsgi_decode(name)
+ raw_name = RAW_VALUE_NAMES.get(name)
+ if raw_name:
+ res[raw_name] = value
+ res[name] = wsgi_decode(value)
+
+
+def read_fastcgi_input(stream, req_id, content):
+ """reads FastCGI std-in and stores it in wsgi.input passed in the
+ wsgi environment array"""
+ res = _REQUESTS[req_id].params
+ if 'wsgi.input' not in res:
+ res['wsgi.input'] = content
+ else:
+ res['wsgi.input'] += content
+
+ if not content:
+ # we've hit the end of the input stream, time to process input...
+ return _REQUESTS[req_id]
+
+
+def read_fastcgi_data(stream, req_id, content):
+ """reads FastCGI data stream and publishes it as wsgi.data"""
+ res = _REQUESTS[req_id].params
+ if 'wsgi.data' not in res:
+ res['wsgi.data'] = content
+ else:
+ res['wsgi.data'] += content
+
+
+def read_fastcgi_abort_request(stream, req_id, content):
+ """reads the wsgi abort request, which we ignore, we'll send the
+ finish execution request anyway..."""
+ pass
+
+
+def read_fastcgi_get_values(stream, req_id, content):
+ """reads the fastcgi request to get parameter values, and immediately
+ responds"""
+ offset = 0
+ request = {}
+ while offset < len(content):
+ offset, name, value = read_fastcgi_keyvalue_pairs(content, offset)
+ request[name] = value
+
+ response = {}
+ if FCGI_MAX_CONNS in request:
+ response[FCGI_MAX_CONNS] = '1'
+
+ if FCGI_MAX_REQS in request:
+ response[FCGI_MAX_REQS] = '1'
+
+ if FCGI_MPXS_CONNS in request:
+ response[FCGI_MPXS_CONNS] = '0'
+
+ send_response(
+ stream,
+ req_id,
+ FCGI_GET_VALUES_RESULT,
+ write_fastcgi_keyvalue_pairs(response)
+ )
+
+
+# Our request processors for different FastCGI protocol requests. Only those
+# requests that we receive are defined here.
+REQUEST_PROCESSORS = {
+ FCGI_BEGIN_REQUEST : read_fastcgi_begin_request,
+ FCGI_ABORT_REQUEST : read_fastcgi_abort_request,
+ FCGI_PARAMS : read_fastcgi_params,
+ FCGI_STDIN : read_fastcgi_input,
+ FCGI_DATA : read_fastcgi_data,
+ FCGI_GET_VALUES : read_fastcgi_get_values
+}
+
+APPINSIGHT_CLIENT = None
+
+def log(txt):
+ """Logs messages to a log file if WSGI_LOG env var is defined."""
+ if APPINSIGHT_CLIENT:
+ try:
+ APPINSIGHT_CLIENT.track_event(txt)
+ except:
+ pass
+
+ log_file = os.environ.get('WSGI_LOG')
+ if log_file:
+ with open(log_file, 'a+', encoding='utf-8') as f:
+ txt = txt.replace('\r\n', '\n')
+ f.write('%s: %s%s' % (datetime.datetime.now(), txt, '' if txt.endswith('\n') else '\n'))
+
+def maybe_log(txt):
+ """Logs messages to a log file if WSGI_LOG env var is defined, and does not
+ raise exceptions if logging fails."""
+ try:
+ log(txt)
+ except:
+ pass
+
+def send_response(stream, req_id, resp_type, content, streaming=True):
+ """sends a response w/ the given id, type, and content to the server.
+ If the content is streaming then an empty record is sent at the end to
+ terminate the stream"""
+ if not isinstance(content, bytes):
+ raise TypeError("content must be encoded before sending: %r" % content)
+
+ offset = 0
+ while True:
+ len_remaining = max(min(len(content) - offset, 0xFFFF), 0)
+
+ data = struct.pack(
+ '>BBHHBB',
+ FCGI_VERSION_1, # version
+ resp_type, # type
+ req_id, # requestIdB1:B0
+ len_remaining, # contentLengthB1:B0
+ 0, # paddingLength
+ 0, # reserved
+ ) + content[offset:(offset + len_remaining)]
+
+ offset += len_remaining
+
+ os.write(stream.fileno(), data)
+ if len_remaining == 0 or not streaming:
+ break
+ stream.flush()
+
+def get_environment(dir):
+ web_config = os.path.join(dir, 'Web.config')
+ if not os.path.exists(web_config):
+ return {}
+
+ d = {}
+ doc = minidom.parse(web_config)
+ config = doc.getElementsByTagName('configuration')
+ for configSection in config:
+ appSettings = configSection.getElementsByTagName('appSettings')
+ for appSettingsSection in appSettings:
+ values = appSettingsSection.getElementsByTagName('add')
+ for curAdd in values:
+ key = curAdd.getAttribute('key')
+ value = curAdd.getAttribute('value')
+ if key and value is not None:
+ d[key.strip()] = value
+ return d
+
+ReadDirectoryChangesW = ctypes.windll.kernel32.ReadDirectoryChangesW
+ReadDirectoryChangesW.restype = ctypes.c_uint32
+ReadDirectoryChangesW.argtypes = [
+ ctypes.c_void_p, # HANDLE hDirectory
+ ctypes.c_void_p, # LPVOID lpBuffer
+ ctypes.c_uint32, # DWORD nBufferLength
+ ctypes.c_uint32, # BOOL bWatchSubtree
+ ctypes.c_uint32, # DWORD dwNotifyFilter
+ ctypes.POINTER(ctypes.c_uint32), # LPDWORD lpBytesReturned
+ ctypes.c_void_p, # LPOVERLAPPED lpOverlapped
+ ctypes.c_void_p # LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine
+]
+try:
+ from _winapi import (CreateFile, CloseHandle, GetLastError, ExitProcess,
+ WaitForSingleObject, INFINITE, OPEN_EXISTING)
+except ImportError:
+ CreateFile = ctypes.windll.kernel32.CreateFileW
+ CreateFile.restype = ctypes.c_void_p
+ CreateFile.argtypes = [
+ ctypes.c_wchar_p, # lpFilename
+ ctypes.c_uint32, # dwDesiredAccess
+ ctypes.c_uint32, # dwShareMode
+ ctypes.c_void_p, # LPSECURITY_ATTRIBUTES,
+ ctypes.c_uint32, # dwCreationDisposition,
+ ctypes.c_uint32, # dwFlagsAndAttributes,
+ ctypes.c_void_p # hTemplateFile
+ ]
+
+ CloseHandle = ctypes.windll.kernel32.CloseHandle
+ CloseHandle.argtypes = [ctypes.c_void_p]
+
+ GetLastError = ctypes.windll.kernel32.GetLastError
+ GetLastError.restype = ctypes.c_uint32
+
+ ExitProcess = ctypes.windll.kernel32.ExitProcess
+ ExitProcess.restype = ctypes.c_void_p
+ ExitProcess.argtypes = [ctypes.c_uint32]
+
+ WaitForSingleObject = ctypes.windll.kernel32.WaitForSingleObject
+ WaitForSingleObject.argtypes = [ctypes.c_void_p, ctypes.c_uint32]
+ WaitForSingleObject.restype = ctypes.c_uint32
+
+ OPEN_EXISTING = 3
+ INFINITE = -1
+
+FILE_LIST_DIRECTORY = 1
+FILE_SHARE_READ = 0x00000001
+FILE_SHARE_WRITE = 0x00000002
+FILE_SHARE_DELETE = 0x00000004
+FILE_FLAG_BACKUP_SEMANTICS = 0x02000000
+MAX_PATH = 260
+FILE_NOTIFY_CHANGE_LAST_WRITE = 0x10
+ERROR_NOTIFY_ENUM_DIR = 1022
+INVALID_HANDLE_VALUE = 0xFFFFFFFF
+
+class FILE_NOTIFY_INFORMATION(ctypes.Structure):
+ _fields_ = [('NextEntryOffset', ctypes.c_uint32),
+ ('Action', ctypes.c_uint32),
+ ('FileNameLength', ctypes.c_uint32),
+ ('Filename', ctypes.c_wchar)]
+
+_ON_EXIT_TASKS = None
+def run_exit_tasks():
+ global _ON_EXIT_TASKS
+ maybe_log("Running on_exit tasks")
+ while _ON_EXIT_TASKS:
+ tasks, _ON_EXIT_TASKS = _ON_EXIT_TASKS, []
+ for t in tasks:
+ try:
+ t()
+ except Exception:
+ maybe_log("Error in exit task: " + traceback.format_exc())
+
+def on_exit(task):
+ global _ON_EXIT_TASKS
+ if _ON_EXIT_TASKS is None:
+ _ON_EXIT_TASKS = tasks = []
+ try:
+ evt = int(os.getenv('_FCGI_SHUTDOWN_EVENT_'))
+ except (TypeError, ValueError):
+ maybe_log("Could not wait on event %s" % os.getenv('_FCGI_SHUTDOWN_EVENT_'))
+ else:
+ def _wait_for_exit():
+ WaitForSingleObject(evt, INFINITE)
+ run_exit_tasks()
+ ExitProcess(0)
+
+ start_new_thread(_wait_for_exit, ())
+ _ON_EXIT_TASKS.append(task)
+
+def start_file_watcher(path, restart_regex):
+ if restart_regex is None:
+ restart_regex = ".*((\\.py)|(\\.config))$"
+ elif not restart_regex:
+ # restart regex set to empty string, no restart behavior
+ return
+
+ def enum_changes(path):
+ """Returns a generator that blocks until a change occurs, then yields
+ the filename of the changed file.
+
+ Yields an empty string and stops if the buffer overruns, indicating that
+ too many files were changed."""
+
+ buffer = ctypes.create_string_buffer(32 * 1024)
+ bytes_ret = ctypes.c_uint32()
+
+ try:
+ the_dir = CreateFile(
+ path,
+ FILE_LIST_DIRECTORY,
+ FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
+ 0,
+ OPEN_EXISTING,
+ FILE_FLAG_BACKUP_SEMANTICS,
+ 0,
+ )
+ except OSError:
+ maybe_log("Unable to create watcher")
+ return
+
+ if not the_dir or the_dir == INVALID_HANDLE_VALUE:
+ maybe_log("Unable to create watcher")
+ return
+
+ while True:
+ ret_code = ReadDirectoryChangesW(
+ the_dir,
+ buffer,
+ ctypes.sizeof(buffer),
+ True,
+ FILE_NOTIFY_CHANGE_LAST_WRITE,
+ ctypes.byref(bytes_ret),
+ None,
+ None,
+ )
+
+ if ret_code:
+ cur_pointer = ctypes.addressof(buffer)
+ while True:
+ fni = ctypes.cast(cur_pointer, ctypes.POINTER(FILE_NOTIFY_INFORMATION))
+ # FileName is not null-terminated, so specifying length is mandatory.
+ filename = ctypes.wstring_at(cur_pointer + 12, fni.contents.FileNameLength // 2)
+ yield filename
+ if fni.contents.NextEntryOffset == 0:
+ break
+ cur_pointer = cur_pointer + fni.contents.NextEntryOffset
+ elif GetLastError() == ERROR_NOTIFY_ENUM_DIR:
+ CloseHandle(the_dir)
+ yield ''
+ return
+ else:
+ CloseHandle(the_dir)
+ return
+
+ log('wfastcgi.py will restart when files in %s are changed: %s' % (path, restart_regex))
+ def watcher(path, restart):
+ for filename in enum_changes(path):
+ if not filename:
+ log('wfastcgi.py exiting because the buffer was full')
+ run_exit_tasks()
+ ExitProcess(0)
+ elif restart.match(filename):
+ log('wfastcgi.py exiting because %s has changed, matching %s' % (filename, restart_regex))
+ # we call ExitProcess directly to quickly shutdown the whole process
+ # because sys.exit(0) won't have an effect on the main thread.
+ run_exit_tasks()
+ ExitProcess(0)
+
+ restart = re.compile(restart_regex)
+ start_new_thread(watcher, (path, restart))
+
+def get_wsgi_handler(handler_name):
+ if not handler_name:
+ raise Exception('WSGI_HANDLER env var must be set')
+
+ if not isinstance(handler_name, str):
+ handler_name = to_str(handler_name)
+
+ module_name, _, callable_name = handler_name.rpartition('.')
+ should_call = callable_name.endswith('()')
+ callable_name = callable_name[:-2] if should_call else callable_name
+ name_list = [(callable_name, should_call)]
+ handler = None
+ last_tb = ''
+
+ while module_name:
+ try:
+ handler = __import__(module_name, fromlist=[name_list[0][0]])
+ last_tb = ''
+ for name, should_call in name_list:
+ handler = getattr(handler, name)
+ if should_call:
+ handler = handler()
+ break
+ except ImportError:
+ module_name, _, callable_name = module_name.rpartition('.')
+ should_call = callable_name.endswith('()')
+ callable_name = callable_name[:-2] if should_call else callable_name
+ name_list.insert(0, (callable_name, should_call))
+ handler = None
+ last_tb = ': ' + traceback.format_exc()
+
+ if handler is None:
+ raise ValueError('"%s" could not be imported%s' % (handler_name, last_tb))
+
+ return handler
+
+def read_wsgi_handler(physical_path):
+ global APPINSIGHT_CLIENT
+ env = get_environment(physical_path)
+ os.environ.update(env)
+ for path in (v for k, v in env.items() if k.lower() == 'pythonpath'):
+ # Expand environment variables manually.
+ expanded_path = re.sub(
+ '%(\\w+?)%',
+ lambda m: os.getenv(m.group(1), ''),
+ path
+ )
+ sys.path.extend(fs_encode(p) for p in expanded_path.split(';') if p)
+
+ handler = get_wsgi_handler(os.getenv("WSGI_HANDLER"))
+ instr_key = os.getenv("APPINSIGHTS_INSTRUMENTATIONKEY")
+ if instr_key:
+ try:
+ # Attempt the import after updating sys.path - sites must
+ # include applicationinsights themselves.
+ from applicationinsights.requests import WSGIApplication
+ except ImportError:
+ maybe_log("Failed to import applicationinsights: " + traceback.format_exc())
+ else:
+ handler = WSGIApplication(instr_key, handler)
+ APPINSIGHT_CLIENT = handler.client
+ # Ensure we will flush any remaining events when we exit
+ on_exit(handler.client.flush)
+
+ return env, handler
+
+class handle_response(object):
+ """A context manager for handling the response. This will ensure that
+ exceptions in the handler are correctly reported, and the FastCGI request is
+ properly terminated.
+ """
+
+ def __init__(self, stream, record, get_output, get_errors):
+ self.stream = stream
+ self.record = record
+ self._get_output = get_output
+ self._get_errors = get_errors
+ self.error_message = ''
+ self.fatal_errors = False
+ self.physical_path = ''
+ self.header_bytes = None
+ self.sent_headers = False
+
+ def __enter__(self):
+ record = self.record
+ record.params['wsgi.input'] = BytesIO(record.params['wsgi.input'])
+ record.params['wsgi.version'] = (1, 0)
+ record.params['wsgi.url_scheme'] = 'https' if record.params.get('HTTPS', '').lower() == 'on' else 'http'
+ record.params['wsgi.multiprocess'] = True
+ record.params['wsgi.multithread'] = False
+ record.params['wsgi.run_once'] = False
+
+ self.physical_path = record.params.get('APPL_PHYSICAL_PATH', os.path.dirname(__file__))
+
+ if 'HTTP_X_ORIGINAL_URL' in record.params:
+ # We've been re-written for shared FastCGI hosting, so send the
+ # original URL as PATH_INFO.
+ record.params['PATH_INFO'] = record.params['HTTP_X_ORIGINAL_URL']
+ record.params['wsgi.path_info'] = record.params['wfastcgi.http_x_original_url']
+
+ # PATH_INFO is not supposed to include the query parameters, so remove them
+ record.params['PATH_INFO'] = record.params['PATH_INFO'].partition('?')[0]
+ record.params['wsgi.path_info'] = record.params['wsgi.path_info'].partition(wsgi_encode('?'))[0]
+
+ return self
+
+ def __exit__(self, exc_type, exc_value, exc_tb):
+ # Send any error message on FCGI_STDERR.
+ if exc_type and exc_type is not _ExitException:
+ error_msg = "%s:\n\n%s\n\nStdOut: %s\n\nStdErr: %s" % (
+ self.error_message or 'Error occurred',
+ ''.join(traceback.format_exception(exc_type, exc_value, exc_tb)),
+ self._get_output(),
+ self._get_errors(),
+ )
+ if not self.header_bytes or not self.sent_headers:
+ self.header_bytes = wsgi_encode('Status: 500 Internal Server Error\r\n')
+ self.send(FCGI_STDERR, wsgi_encode(error_msg))
+ # Best effort at writing to the log. It's more important to
+ # finish the response or the user will only see a generic 500
+ # error.
+ maybe_log(error_msg)
+
+ # End the request. This has to run in both success and failure cases.
+ self.send(FCGI_END_REQUEST, zero_bytes(8), streaming=False)
+
+ # Remove the request from our global dict
+ del _REQUESTS[self.record.req_id]
+
+ # Suppress all exceptions unless requested
+ return not self.fatal_errors
+
+ @staticmethod
+ def _decode_header(key, value):
+ if not isinstance(key, str):
+ key = wsgi_decode(key)
+ if not isinstance(value, str):
+ value = wsgi_decode(value)
+ return key, value
+
+ def start(self, status, headers, exc_info=None):
+ """Starts sending the response. The response is ended when the context
+ manager exits."""
+ if exc_info:
+ try:
+ if self.sent_headers:
+ # We have to re-raise if we've already started sending data.
+ raise exception_with_traceback(exc_info[1], exc_info[2])
+ finally:
+ exc_info = None
+ elif self.header_bytes:
+ raise Exception('start_response has already been called')
+
+ if not isinstance(status, str):
+ status = wsgi_decode(status)
+ header_text = 'Status: %s\r\n' % status
+ if headers:
+ header_text += ''.join('%s: %s\r\n' % handle_response._decode_header(*i) for i in headers)
+ self.header_bytes = wsgi_encode(header_text + '\r\n')
+
+ return lambda content: self.send(FCGI_STDOUT, content)
+
+ def send(self, resp_type, content, streaming=True):
+ '''Sends part of the response.'''
+ if not self.sent_headers:
+ if not self.header_bytes:
+ raise Exception("start_response has not yet been called")
+
+ self.sent_headers = True
+ send_response(self.stream, self.record.req_id, FCGI_STDOUT, self.header_bytes)
+ self.header_bytes = None
+
+ return send_response(self.stream, self.record.req_id, resp_type, content, streaming)
+
+_REQUESTS = {}
+
+def main():
+ initialized = False
+ log('wfastcgi.py %s started' % __version__)
+ log('Python version: %s' % sys.version)
+
+ try:
+ fcgi_stream = sys.stdin.detach() if sys.version_info[0] >= 3 else sys.stdin
+ try:
+ import msvcrt
+ msvcrt.setmode(fcgi_stream.fileno(), os.O_BINARY)
+ except ImportError:
+ pass
+
+ while True:
+ record = read_fastcgi_record(fcgi_stream)
+ if not record:
+ continue
+
+ errors = sys.stderr = sys.__stderr__ = record.params['wsgi.errors'] = StringIO()
+ output = sys.stdout = sys.__stdout__ = StringIO()
+
+ with handle_response(fcgi_stream, record, output.getvalue, errors.getvalue) as response:
+ if not initialized:
+ log('wfastcgi.py %s initializing' % __version__)
+
+ os.chdir(response.physical_path)
+ sys.path[0] = '.'
+
+ # Initialization errors should be treated as fatal.
+ response.fatal_errors = True
+ response.error_message = 'Error occurred while reading WSGI handler'
+ env, handler = read_wsgi_handler(response.physical_path)
+
+ response.error_message = 'Error occurred starting file watcher'
+ start_file_watcher(response.physical_path, env.get('WSGI_RESTART_FILE_REGEX'))
+
+ # Enable debugging if possible. Default to local-only, but
+ # allow a web.config to override where we listen
+ ptvsd_secret = env.get('WSGI_PTVSD_SECRET')
+ if ptvsd_secret:
+ ptvsd_address = (env.get('WSGI_PTVSD_ADDRESS') or 'localhost:5678').split(':', 2)
+ try:
+ ptvsd_port = int(ptvsd_address[1])
+ except LookupError:
+ ptvsd_port = 5678
+ except ValueError:
+ log('"%s" is not a valid port number for debugging' % ptvsd_address[1])
+ ptvsd_port = 0
+
+ if ptvsd_address[0] and ptvsd_port:
+ try:
+ import ptvsd
+ except ImportError:
+ log('unable to import ptvsd to enable debugging')
+ else:
+ addr = ptvsd_address[0], ptvsd_port
+ ptvsd.enable_attach(secret=ptvsd_secret, address=addr)
+ log('debugging enabled on %s:%s' % addr)
+
+ response.error_message = ''
+ response.fatal_errors = False
+
+ log('wfastcgi.py %s initialized' % __version__)
+ initialized = True
+
+ os.environ.update(env)
+
+ # SCRIPT_NAME + PATH_INFO is supposed to be the full path
+ # (http://www.python.org/dev/peps/pep-0333/) but by default
+ # (http://msdn.microsoft.com/en-us/library/ms525840(v=vs.90).aspx)
+ # IIS is sending us the full URL in PATH_INFO, so we need to
+ # clear the script name here
+ if 'AllowPathInfoForScriptMappings' not in os.environ:
+ record.params['SCRIPT_NAME'] = ''
+ record.params['wsgi.script_name'] = wsgi_encode('')
+
+ # correct SCRIPT_NAME and PATH_INFO if we are told what our SCRIPT_NAME should be
+ if 'SCRIPT_NAME' in os.environ and record.params['PATH_INFO'].lower().startswith(os.environ['SCRIPT_NAME'].lower()):
+ record.params['SCRIPT_NAME'] = os.environ['SCRIPT_NAME']
+ record.params['PATH_INFO'] = record.params['PATH_INFO'][len(record.params['SCRIPT_NAME']):]
+ record.params['wsgi.script_name'] = wsgi_encode(record.params['SCRIPT_NAME'])
+ record.params['wsgi.path_info'] = wsgi_encode(record.params['PATH_INFO'])
+
+ # Send each part of the response to FCGI_STDOUT.
+ # Exceptions raised in the handler will be logged by the context
+ # manager and we will then wait for the next record.
+
+ result = handler(record.params, response.start)
+ try:
+ for part in result:
+ if part:
+ response.send(FCGI_STDOUT, part)
+ finally:
+ if hasattr(result, 'close'):
+ result.close()
+ except _ExitException:
+ pass
+ except Exception:
+ maybe_log('Unhandled exception in wfastcgi.py: ' + traceback.format_exc())
+ except BaseException:
+ maybe_log('Unhandled exception in wfastcgi.py: ' + traceback.format_exc())
+ raise
+ finally:
+ run_exit_tasks()
+ maybe_log('wfastcgi.py %s closed' % __version__)
+
+def _run_appcmd(args):
+ from subprocess import check_call, CalledProcessError
+
+ if len(sys.argv) > 1 and os.path.isfile(sys.argv[1]):
+ appcmd = sys.argv[1:]
+ else:
+ appcmd = [os.path.join(os.getenv('SystemRoot'), 'system32', 'inetsrv', 'appcmd.exe')]
+
+ if not os.path.isfile(appcmd[0]):
+ print('IIS configuration tool appcmd.exe was not found at', appcmd, file=sys.stderr)
+ return -1
+
+ args = appcmd + args
+ try:
+ return check_call(args)
+ except CalledProcessError as ex:
+ print('''An error occurred running the command:
+
+%r
+
+Ensure your user has sufficient privileges and try again.''' % args, file=sys.stderr)
+ return ex.returncode
+
+def enable():
+ executable = '"' + sys.executable + '"' if ' ' in sys.executable else sys.executable
+ quoted_file = '"' + __file__ + '"' if ' ' in __file__ else __file__
+ res = _run_appcmd([
+ "set", "config", "/section:system.webServer/fastCGI",
+ "/+[fullPath='" + executable + "', arguments='" + quoted_file + "', signalBeforeTerminateSeconds='30']"
+ ])
+
+ if res == 0:
+ print('"%s|%s" can now be used as a FastCGI script processor' % (executable, quoted_file))
+ return res
+
+def disable():
+ executable = '"' + sys.executable + '"' if ' ' in sys.executable else sys.executable
+ quoted_file = '"' + __file__ + '"' if ' ' in __file__ else __file__
+ res = _run_appcmd([
+ "set", "config", "/section:system.webServer/fastCGI",
+ "/-[fullPath='" + executable + "', arguments='" + quoted_file + "', signalBeforeTerminateSeconds='30']"
+ ])
+
+ if res == 0:
+ print('"%s|%s" is no longer registered for use with FastCGI' % (executable, quoted_file))
+ return res
+
+if __name__ == '__main__':
+ main()
diff --git a/r.txt b/r.txt
new file mode 100644
index 0000000..594500a
--- /dev/null
+++ b/r.txt
@@ -0,0 +1,13 @@
+aniso8601==9.0.1
+click==8.0.4
+colorama==0.4.4
+Flask==2.0.3
+# Editable install with no version control (Flask-RESTful==0.3.9)
+-e c:\users\venba\appdata\local\programs\python\pyenv\p10\lib\site-packages
+itsdangerous==2.1.2
+Jinja2==3.1.0
+MarkupSafe==2.1.1
+pypyodbc==1.3.6
+pytz==2022.1
+six==1.16.0
+Werkzeug==2.0.3
diff --git a/routes.py b/routes.py
new file mode 100644
index 0000000..2f1d7cd
--- /dev/null
+++ b/routes.py
@@ -0,0 +1,8 @@
+from Controllers.WorkingController import WorkingController
+from Controllers.CIBILController import CIBIL
+
+def initialize_routes(api):
+ api.add_resource(WorkingController, '/api/component','/api/component/')
+ api.add_resource(CIBIL, '/api/cibil')
+ # api.add_resource(WorkingController, '/api/component/')
+ # api.add_resource(MovieApi, '/movies/')
\ No newline at end of file
diff --git a/services/CibilBusinessOperationService.py b/services/CibilBusinessOperationService.py
new file mode 100644
index 0000000..9fd5a22
--- /dev/null
+++ b/services/CibilBusinessOperationService.py
@@ -0,0 +1,439 @@
+from flask import current_app as my_app
+import pandas as pd
+import re,copy
+import logging
+from datetime import datetime
+from time import time
+
+# from .CibilMasterDataService import CibilMasterDataService
+from .SampleDataProviderService import SampleDataProviderService
+from .DpdCalculationService import DpdCalculationService
+from .CibilSummaryDataUpdateService import CibilSummaryDataUpdateService
+
+from .CibilDataService import CibilDataService
+
+from Models.op_rtr_summary_of_active_loans import Out_active_and_closed_loans_details
+
+
+class CibilBusinessOperationService:
+
+
+ # start making summary of single member/applicant's credit bureau summary
+ # report by @param : member_reference_number
+
+ #to store master data like configured bucket details
+ # dpd_month_bucket_master = []
+ # sanction_summary_month_buckets = []
+ # enquiry_summary_month_buckets = []
+
+ # #data generating using masters synamic bucket skeletons/headers
+ # sanction_summary_skeleton = {}
+ # enquiry_summary_skeleton = {}
+
+ # #for hold all summary reports
+ # unique_credit_facility_summary = {'total_count':0,'overdue_count':0,'zero_bal_count':0,'nil_overdue':0,'adv_high_credit':0,'current_balance':0,'overdue_balance':0,'date_latest_opened': '','date_oldest_opened': ''}
+ # live_and_closed_account_summary = []
+ # sanctioned_amt_details_summary = {}
+ # enquiry_amt_details_summary = {}
+
+ #http://127.0.0.1:5000/api/cibil?reference_number=202201121116395000000&los_id=MW112233&cibil_type=1&action=1
+ def doCIBILActiveCloseLoansSummary(los_id,reference_number,cibil_type):
+
+ # raise Exception('manual stop')
+ logText = 'doCIBILActiveCloseLoansSummary - LOSID - '+los_id+', '+'REFNO - '+reference_number+', '+'CTYPE - '+cibil_type+' '
+ my_app.logger.info(logText)
+ print('doCIBILActiveCloseLoansSummary - ',logText)
+
+ # logger = logging.getLogger('cibil.sub')
+ # logger.info(logText)
+ # return True
+ live_and_closed_account_summary = []
+ credit_facility_details = CibilDataService.getCreditFacilityDetails(reference_number,los_id,cibil_type)
+
+
+ logText = 'TOTAL CREDIT FACILITY - ' + str(len(credit_facility_details)) + ' FOUND'
+ my_app.logger.info(logText)
+ print(logText)
+ dpd_details = CibilDataService.getDPDDetails(reference_number,los_id,cibil_type)
+ # return dpd_details
+ borrower_details = CibilDataService.getBorrowerDetails(reference_number,los_id,cibil_type)
+ # cibil_raw_data = SampleDataProviderService.getCIBILRawData(reference_number=member_reference_number,type=1)
+ dpd_month_bucket_master = CibilDataService.getMonthBucketMaster('DPD'
+) # raise Exception('manual stop')
+
+ # start
+ if len(credit_facility_details) > 0:
+ # print('####LOGIC STARTED#######')
+ # over_start_time = time()
+ for idx,row in enumerate(credit_facility_details):
+ # if row['AccountTranDetailsID'] == '388857':
+ # print('#########################BREAK')
+ # break
+
+ CustomerName1 = "" if borrower_details[0]['ConsumerNameField1'] == None else borrower_details[0]['ConsumerNameField1'].strip()
+ CustomerName2 = "" if borrower_details[0]['ConsumerNameField2'] == None else borrower_details[0]['ConsumerNameField2'].strip()
+
+ CustomerName = CustomerName1+' '+CustomerName2
+ GroupString = row['grp_str']
+ AccountType = row['AccountType'].strip()
+ ReportedandCertifiedDate = row['DateReportedAndCertified']
+ OpendDate = (row['DateOpenedDisbursed']) if row['DateOpenedDisbursed'] != "" and row['DateOpenedDisbursed'] != None and row['DateOpenedDisbursed'] != 'None' else None
+ DateClosed = (row['DateClosed']) if row['DateClosed'] != "" and row['DateClosed'] != None and row['DateClosed'] != 'None' else None
+ SanctionedAmount = (row['HighCreditSanctionedAmount']) if row['HighCreditSanctionedAmount'] != "" and row['HighCreditSanctionedAmount'] != None and row['HighCreditSanctionedAmount'] != 'None' else 0
+ CurrentBalance = (row['CurrentBalance']) if row['CurrentBalance'] != "" and row['CurrentBalance'] != None and row['CurrentBalance'] != 'None' else 0
+ EMIAmount = (row['EMIAmount']) if row['EMIAmount'] != "" and row['EMIAmount'] != None and row['EMIAmount'] != 'None' else 0
+ OverdueAmount = (row['AmountOverdue']) if row['AmountOverdue'] != "" and row['AmountOverdue'] != None and row['AmountOverdue'] != 'None' else 0
+ RepaymentTenure = (int(float(row['RepaymentTenure']))) if row['RepaymentTenure'] != "" and row['RepaymentTenure'] != None and row['RepaymentTenure'] != 'None' else 0
+ Status = row['WrittenOffAndSettledStatus'].strip()
+ Ownership = row['OwnershipIndicator'].strip()
+ Ownership = "I" if Ownership == "Individual" else "J" if Ownership == "Joint" else "AU" if re.search("Authorised User", Ownership) else "G" if Ownership == "Guarantor" else Ownership
+
+ if AccountType == 'Credit Card':
+ SanctionedAmount = (row['CreditLimit']) if row['CreditLimit'] != "" and row['CreditLimit'] != None and row['CreditLimit'] != 'None' else 0
+
+
+ #unique credit facility function call , if current credit facility is J and G #currently ot in use
+ # if Own == "J" or Own == "G":
+ #CibilBusinessOperationService.getUniqueCreditFacilitySummary(row)
+
+ #DPD logic start
+ dpd_result = DpdCalculationService.dpdCalculation(row['AccountTranDetailsID'],dpd_details,dpd_month_bucket_master)
+ CurrentDPD = dpd_result['currentDPD']
+ DPD0_6 = dpd_result['DPD0_6']
+ DPD7_12 = dpd_result['DPD7_12']
+ DPD13_24 = dpd_result['DPD13_24']
+ DPD25_36 = dpd_result['DPD25_36']
+ # LatestDPD = 0
+ # DPD0_6 = 0
+ # DPD7_12 = 0
+ # DPD13_24 = 0
+ # DPD25_36 = 0
+
+
+ # temp = {"CustomerName":CustomerName,"AccountType":AccountType,"SanctionedDate":SanctionedDate,"SanctionedAmount":SanctionedAmount,"CurrentBalance":CurrentBalance,"EMIAmount":EMIAmount,"Overdue":Overdue,"Tenure":Tenure,"Own":Own,"LatestDPD":LatestDPD,'DPD0_6':DPD0_6,'DPD7_12':DPD7_12,'DPD13_24':DPD13_24,'DPD25_36':DPD25_36}
+ temp = Out_active_and_closed_loans_details(losid=los_id,ref_no=reference_number,consumer_name=CustomerName,account_type=AccountType,reported_and_certified_date=ReportedandCertifiedDate,opened_date=OpendDate,DateClosed=DateClosed,sanctioned_amount=SanctionedAmount,current_balance=CurrentBalance,emi_amount=EMIAmount,overdue_amount=OverdueAmount,repayment_tenure=RepaymentTenure,status=Status,ownership=Ownership,current_dpd=CurrentDPD,highest_dpd_month_wise_bucket_or_count_0_to_6=DPD0_6,highest_dpd_month_wise_bucket_or_count_07_to_12=DPD7_12,highest_dpd_month_wise_bucket_or_count_13_to_24=DPD13_24,highest_dpd_month_wise_bucket_or_count_25_to_36=DPD25_36,is_active=1,createdAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),updatedAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),createdby=1,updatedby=1,grp_str=GroupString)
+ live_and_closed_account_summary.append(temp);
+
+ # start_time = time()
+ # print('idx',idx)
+ # print("--- %s seconds ---" %(time() - start_time))
+
+ ##### All o/p data insertion startes here except open & closed ac summary. it gets inserted in above loop
+ logText = 'TOTAL ACTIVE&CLOSED LOANS - ' + str(len(live_and_closed_account_summary))
+ my_app.logger.info(logText)
+ print(logText)
+ res = CibilSummaryDataUpdateService.updateActiveOrClosedLoans(live_and_closed_account_summary)
+ logText = (res) +' INSERTED'
+ my_app.logger.info(logText)
+ print(logText)
+
+
+ ##### End of All o/p data insertion startes here except open & closed ac summary. it gets inserted in above loop
+
+ # return live_and_closed_account_summary
+ # print("--- %s seconds overall ---" %(time() - over_start_time))
+
+ return True
+
+
+
+
+ # transform Sansactioned Amt table from transactions details
+ # def getSanctionedAmtDetails(accountTranDetails):
+ def doCIBILSanctionedLoansSummary(los_id,reference_number,cibil_type,output_type):
+
+ logText = 'doCIBILSanctionedLoansSummary - LOSID - '+los_id+', '+'REFNO - '+reference_number+', '+'CTYPE - '+cibil_type+', O/PTYPE - '+str(output_type)
+ my_app.logger.info(logText)
+ print(logText)
+
+ sanctioned_amt_details_summary = {}
+ credit_facility_details = []
+ month_bucket_master = CibilDataService.getMonthBucketMaster('SAN_SUM')#SAN_SUM = sanction summary bucket master
+ sanction_summary_skeleton = CibilBusinessOperationService.prepareSkeletons(month_bucket_master,type = 2)# 2 = sanction
+ if output_type == 1:credit_facility_details = CibilDataService.getCreditFacilityDetails(reference_number,los_id,cibil_type)
+ elif output_type == 2:credit_facility_details = CibilDataService.getUniqueCreditFacilityDetails(los_id)
+ # print(credit_facility_details)
+ # return(credit_facility_details)
+ logText = 'TOTAL '+ str(len(credit_facility_details))+' CREDIT FACILITIES FOUND'
+ my_app.logger.info(logText)
+ print(logText)
+ # print(month_bucket_master)
+ # print(sanction_summary_skeleton)
+ # print(credit_facility_details)
+ # raise Exception('doCIBILSanctionedLoansSummary')
+ total_enquiry_count_for_log = 0
+ for index,credit_facility_detail in enumerate(credit_facility_details):
+
+ creditFacility = credit_facility_detail['AccountType'].strip()
+ SanctionedDate = credit_facility_detail['DateOpenedDisbursed']
+ DateClosed = credit_facility_detail['DateClosed']
+ CurrentBalance = credit_facility_detail['CurrentBalance']
+ SanctionedAmount = credit_facility_detail['HighCreditSanctionedAmount']
+ if creditFacility == 'Credit Card':
+ SanctionedAmount = credit_facility_detail['CreditLimit']
+ # print((SanctionedAmount))
+ SanctionedAmount = float(SanctionedAmount) if SanctionedAmount != "" and SanctionedAmount != 'None' and SanctionedAmount != None else 0
+ # print('###Credit Card### - ', SanctionedAmount,SanctionedAmount.isnumeric())
+
+ month_bucket_index = credit_facility_detail['month_bucket_index']
+ # month = (datetime.strptime((SanctionedDate.split(" ")[0]), "%Y-%m-%d")).month if SanctionedDate != 'None' else 1
+
+ # month_bucket = '1' if month == 1 else '2-3' if month >= 2 and month <= 3 else '4-6' if month >=4 and month <= 6 else '7-12' if month >= 7 and month <= 12 else '13-24' if month >= 13 and month <= 24 else '25-36' if month >= 25 and month <= 36 else '>36' if month > 36 else 'None'
+ month_bucket = DpdCalculationService.dpdFindDaysBucket(month_bucket_master,month_bucket_index)
+
+ sanctioned_amt_detail = { 'creditFacility': creditFacility, 'SanctionedDate':SanctionedDate,'SanctionedAmount':SanctionedAmount,'monthBucket':month_bucket,'CurrentBalance':CurrentBalance, 'DateClosed' : DateClosed }
+
+ # print('mergeSanctionAmtDetails')
+ #check current credit facility exists in sanctioned_amt_details_summary
+ if sanctioned_amt_detail['creditFacility'] not in sanctioned_amt_details_summary.keys():
+ # print("FIRST TIME SKELETON ADDED-",sanctioned_amt_detail['creditFacility'],'-',sanctioned_amt_detail['monthBucket'],'-',sanctioned_amt_detail['SanctionedAmount'])
+
+ sanctioned_amt_details_summary[ sanctioned_amt_detail['creditFacility'] ] = copy.deepcopy(sanction_summary_skeleton)
+ # print("BEFORE ADDED***********",sanctioned_amt_detail['SanctionedAmount'],type(sanctioned_amt_detail['SanctionedAmount']),sanctioned_amt_detail['monthBucket'],(sanctioned_amt_detail['SanctionedAmount'] != "" and sanctioned_amt_detail['SanctionedAmount'] != None))
+ # print(sanctioned_amt_details_summary)
+ tempSanctionedAmount = float(sanctioned_amt_detail['SanctionedAmount'])
+ # if sanctioned_amt_detail['SanctionedAmount'].isnumeric()else 0
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']][sanctioned_amt_detail['monthBucket']]['amt'] += tempSanctionedAmount
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']][sanctioned_amt_detail['monthBucket']]['count'] += 1
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']]['total_amt'] += tempSanctionedAmount
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']]['total_count'] += 1
+ total_enquiry_count_for_log += 1
+
+ #for Amount & Count of open and closed accounts
+ if (sanctioned_amt_detail['DateClosed'] == None or sanctioned_amt_detail['DateClosed'] == "" or sanctioned_amt_detail['DateClosed'] == 'None'):
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']][sanctioned_amt_detail['monthBucket']]['openamt'] += tempSanctionedAmount
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']][sanctioned_amt_detail['monthBucket']]['opencount'] += 1
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']]['open_total_amt'] += tempSanctionedAmount
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']]['open_total_count'] += 1
+
+ else:
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']][sanctioned_amt_detail['monthBucket']]['closeamt'] += tempSanctionedAmount
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']][sanctioned_amt_detail['monthBucket']]['closecount'] += 1
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']]['closed_total_amt'] += tempSanctionedAmount
+ sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']]['closed_total_count'] += 1
+ # print("AFTER ADDED***********")
+ # print(sanctioned_amt_details_summary[sanctioned_amt_detail['creditFacility']])
+ # print("")
+ # print("SKELTON-",sanction_summary_skeleton)
+ # print("")
+ logText = str(total_enquiry_count_for_log) +' CREDIT FACILITIES SUMMARIZED AS ' + str(len(sanctioned_amt_details_summary))
+ my_app.logger.info(logText)
+ print(logText)
+ res = CibilSummaryDataUpdateService.updateSanctionedSummaryAndOverallOpenedClosedLoans(sanctioned_amt_details_summary,reference_number,los_id,cibil_type,output_type)
+ logText = str(res) +' INSERTED'
+ my_app.logger.info(logText)
+ print(logText)
+ return sanctioned_amt_details_summary
+
+
+ def prepareSkeletons(month_buckets,type):
+ # print('prepareSkeletons')
+
+ return_skelton = {}
+
+ if type == 2: # sanction
+ for month_bucket in month_buckets:
+ return_skelton[month_bucket['name']] = {'amt':0,'count':0,'openamt':0,'opencount':0,'closeamt':0,'closecount':0}
+
+ return_skelton['total_amt'] = 0
+ return_skelton['total_count'] = 0
+ return_skelton['open_total_amt'] = 0
+ return_skelton['open_total_count'] = 0
+ return_skelton['closed_total_amt'] = 0
+ return_skelton['closed_total_count'] = 0
+
+ elif type == 1:#enquiry
+ for month_bucket in month_buckets:
+ return_skelton[month_bucket['name']] = {'amt':0,'count':0}
+
+ return_skelton['total_amt'] = 0
+ return_skelton['total_count'] = 0
+
+ # print(return_skelton)
+ return return_skelton
+
+
+ # def doCIBILEnquirySummary(enquiry_details, type):
+ def doCIBILEnquirySummary(los_id,reference_number,cibil_type,output_type):
+ logText = 'doCIBILEnquirySummary - LOSID - '+los_id+', '+'REFNO - '+reference_number+', '+'CTYPE - '+cibil_type+', O/P TYPE - '+str(output_type)
+ my_app.logger.info(logText)
+ print(logText)
+
+ enquiry_amt_details_summary = {}
+ enquiry_details = []
+ month_bucket_master = CibilDataService.getMonthBucketMaster('ENQ_SUM')#ENQ_SUM = enquiry summary bucket master
+ enquiry_skeleton = CibilBusinessOperationService.prepareSkeletons(month_bucket_master,type = 1)# 1 = enquiry
+ if output_type == 1 : enquiry_details = CibilDataService.getEnquriyDetails(reference_number,los_id,cibil_type)
+ elif output_type == 2 : enquiry_details = CibilDataService.getUniqueEnquriyDetails(los_id)
+
+
+ logText = 'TOTAL '+ str(len(enquiry_details))+' ENQURIES FOUND'
+ my_app.logger.info(logText)
+ print(logText)
+ # return enquiry_details
+ # print(month_bucket_master)
+ # print(enquiry_skeleton)
+ # print(enquiry_details)
+ # raise Exception('dssd')
+ total_enquiry_count_for_log = 0
+ #transform/filter raw consumer enquiry data to necessary data
+ for enquiry_detail in enquiry_details:
+ creditFacility = enquiry_detail['EnquiryPurpose'].strip()
+ SanctionedDate = enquiry_detail['DateOfEnquiry']
+ SanctionedAmount = float(enquiry_detail['EnquiryAmount'])
+
+ month_bucket_index = enquiry_detail['month_bucket_index']
+ # month = (datetime.strptime((SanctionedDate.split(" ")[0]), "%Y-%m-%d")).month
+
+ # month_bucket = '1' if month == 1 else '2-3' if month >= 2 and month <= 3 else '4-6' if month >=4 and month <= 6 else '7-12' if month >= 7 and month <= 12 else '13-24' if month >= 13 and month <= 24 else '25-36' if month >= 25 and month <= 36 else '>36' if month > 36 else 'None'
+ month_bucket = DpdCalculationService.dpdFindDaysBucket(month_bucket_master,month_bucket_index)
+ # print("")
+ # print("DATA - ",creditFacility,'-',SanctionedDate,'-',SanctionedAmount,'-',month,'-',month_bucket)
+ # print("")
+
+ #check current credit facility exists in enquiry_amt_details_summary
+ if creditFacility not in enquiry_amt_details_summary.keys():
+ # print("FIRST TIME SKELETON ADDED-")
+
+ enquiry_amt_details_summary[ creditFacility ] = copy.deepcopy(enquiry_skeleton)
+ # print("BEFORE ADDED***********")
+ # print(CibilBusinessOperationService.enquiry_amt_details_summary)
+
+ enquiry_amt_details_summary[creditFacility][month_bucket]['amt'] += SanctionedAmount
+ enquiry_amt_details_summary[creditFacility][month_bucket]['count'] += 1
+ enquiry_amt_details_summary[creditFacility]['total_count'] += 1
+ enquiry_amt_details_summary[creditFacility]['total_amt'] += SanctionedAmount
+ total_enquiry_count_for_log += 1
+
+ logText = str(total_enquiry_count_for_log) +' ENQURIES SUMMARIZED AS ' + str(len(enquiry_amt_details_summary))
+ my_app.logger.info(logText)
+ print(logText)
+ #update data
+ res = CibilSummaryDataUpdateService.updateEnquirySummaryData(enquiry_amt_details_summary,reference_number,los_id,cibil_type,output_type)
+ logText = str(res) +' INSERTED'
+ my_app.logger.info(logText)
+ print(logText)
+ return res
+
+ #not in use not in use not in use not in use
+ def getUniqueCreditFacilitySummary(creditFacility):
+ print('UniqueCreditFacilitySummary-',creditFacility['AmountOverdue'],creditFacility['CurrentBalance'],creditFacility['DateOpenedDisbursed'],type(creditFacility['CurrentBalance']))
+
+ CibilBusinessOperationService.unique_credit_facility_summary['total_count'] += 1
+
+ if creditFacility['AmountOverdue'] != 'None' :
+ CibilBusinessOperationService.unique_credit_facility_summary['overdue_count'] += 1
+ CibilBusinessOperationService.unique_credit_facility_summary['overdue_balance'] += float((creditFacility['AmountOverdue'])) if creditFacility['AmountOverdue'] != 'None' else 0
+ else:
+ CibilBusinessOperationService.unique_credit_facility_summary['nil_overdue'] +=1
+
+ if float(creditFacility['CurrentBalance']) == float(0) or creditFacility['CurrentBalance'] == "": CibilBusinessOperationService.unique_credit_facility_summary['zero_bal_count'] +=1
+ else: CibilBusinessOperationService.unique_credit_facility_summary['current_balance'] += float(creditFacility['CurrentBalance']) if creditFacility['CurrentBalance'] !='None' else 0
+
+ if CibilBusinessOperationService.unique_credit_facility_summary['date_latest_opened'] == "":
+ CibilBusinessOperationService.unique_credit_facility_summary['date_latest_opened'] = creditFacility['DateOpenedDisbursed'] if creditFacility['DateOpenedDisbursed'] != 'None' else ""
+ else:
+ CibilBusinessOperationService.unique_credit_facility_summary['date_latest_opened'] = creditFacility['DateOpenedDisbursed'] if CibilBusinessOperationService.unique_credit_facility_summary['date_latest_opened'] > creditFacility['DateOpenedDisbursed'] else CibilBusinessOperationService.unique_credit_facility_summary['date_latest_opened']
+
+ if CibilBusinessOperationService.unique_credit_facility_summary['date_oldest_opened'] == "":
+ CibilBusinessOperationService.unique_credit_facility_summary['date_oldest_opened'] = creditFacility['DateOpenedDisbursed'] if creditFacility['DateOpenedDisbursed'] != 'None' else ""
+ else:
+ CibilBusinessOperationService.unique_credit_facility_summary['date_oldest_opened'] = CibilBusinessOperationService.unique_credit_facility_summary['date_latest_opened'] if CibilBusinessOperationService.unique_credit_facility_summary['date_oldest_opened'] > creditFacility['DateOpenedDisbursed'] else creditFacility['DateOpenedDisbursed']
+
+
+
+
+###################################END OF CONSUMER CIBIL BUSINESS SERVICE##################################################
+###################################END OF CONSUMER CIBIL BUSINESS SERVICE##################################################
+###################################END OF CONSUMER CIBIL BUSINESS SERVICE##################################################
+
+
+###################################START OF COMMERCIAL CIBIL BUSINESS SERVICE#########################################
+###################################START OF COMMERCIAL CIBIL BUSINESS SERVICE#########################################
+###################################START OF COMMERCIAL CIBIL BUSINESS SERVICE#########################################
+###################################NOT IN USE * NOT IN USE * NOT IN USE * NOT IN USE#########################################
+
+ #http://127.0.0.1:5000/api/cibil?application_reference_number=202201111930347000000
+ def doCommercialCIBILOperations(application_reference_number,los_id):
+ print('CommercialCIBILOperations')
+ cibil_raw_data = CibilMasterDataService.getCIBILRawData(reference_number=application_reference_number,los_id=los_id,type = 2)
+ # cibil_raw_data = SampleDataProviderService.getCIBILRawData(reference_number=application_reference_number,type = 2)
+ CibilBusinessOperationService.dpd_month_bucket_master = cibil_raw_data['masters']['dpd_month_buckets']
+ CibilBusinessOperationService.sanction_summary_month_buckets = cibil_raw_data['masters']['sanction_summary_month_buckets']
+ CibilBusinessOperationService.enquiry_summary_month_buckets = cibil_raw_data['masters']['enquiry_summary_month_buckets']
+ CibilBusinessOperationService.prepareSkeletons()
+ # print(cibil_raw_data['commercial_cibil_rawdata']['com_credit_facility_current_details'])
+ # raise Exception('asknalk')
+ # print(cibil_raw_data['commercial_cibil_rawdata']['com_dpd_details'])
+
+ CibilBusinessOperationService.prepareEnquirySummary(cibil_raw_data['commercial_cibil_rawdata']['com_enquiry_details'],type = 2)#2 = commercials
+
+ if len(cibil_raw_data['commercial_cibil_rawdata']['com_credit_facility_current_details']) > 0:
+ print('####COMMERCIAL LOGIC STARTED#######')
+
+ for idx,row in enumerate(cibil_raw_data['commercial_cibil_rawdata']['com_credit_facility_current_details']):
+ # if idx == 2:
+ # print('#########################MAINBREAK')
+ # break
+
+ CustomerName = cibil_raw_data['commercial_cibil_rawdata']['com_borrower_details'][0]['EnqInfoBorrowerName'] if cibil_raw_data['commercial_cibil_rawdata']['com_borrower_details'][0].get('EnqInfoBorrowerName') is not None else 'NA'
+
+ AccountType = row['CreditFacilityCDcfType'].strip()
+ ReportedandCertifiedDate = row['CreditFacilityCDLstReportedDate']
+ OpendDate = (row['CreditFacilityCDDatesSanctionedDt']) if row['CreditFacilityCDDatesSanctionedDt'] != "" and row['CreditFacilityCDDatesSanctionedDt'] != None and row['CreditFacilityCDDatesSanctionedDt'] != 'None' else None
+ SanctionedAmount = (row['CreditFacilityCDAmtSanctionedAmt']) if row['CreditFacilityCDAmtSanctionedAmt'] != "" and row['CreditFacilityCDAmtSanctionedAmt'] != None and row['CreditFacilityCDAmtSanctionedAmt'] != 'None' else 0
+ CurrentBalance = row['CreditFacilityCDAmtoutstandingBalance']
+ EMIAmount = (row['CreditFacilityCDAmtinstallmentAmt']) if row['CreditFacilityCDAmtinstallmentAmt'] != "" and row['CreditFacilityCDAmtinstallmentAmt'] != None and row['CreditFacilityCDAmtinstallmentAmt'] != 'None' else 0
+ row['CreditFacilityCDAmtinstallmentAmt']
+ OverdueAmount = (row['CreditFacilityCDAmtOverdue']) if row['CreditFacilityCDAmtOverdue'] != "" and row['CreditFacilityCDAmtOverdue'] != None and row['CreditFacilityCDAmtOverdue'] != 'None' else 0
+ RepaymentTenure = (row['CreditFacilityCDODTenure']) if row['CreditFacilityCDODTenure'] != "" and row['CreditFacilityCDODTenure'] != None and row['CreditFacilityCDODTenure'] != 'None' else 0
+ Status = row['CreditFacilityCDStatus']
+ Ownership = 'NA'
+ # CurrentDPD = row['CreditFacilityCDAssetCDPDueDpd']
+
+
+ dpd_result = DpdCalculationService.commercialDpdCalculation(row['CreditFacilityCDcfSrNo'],cibil_raw_data['commercial_cibil_rawdata']['com_dpd_details'],CibilBusinessOperationService.dpd_month_bucket_master)
+
+ CurrentDPD = dpd_result['currentDPD']
+ DPD0_6 = dpd_result['DPD0_6']
+ DPD7_12 = dpd_result['DPD7_12']
+ DPD13_24 = dpd_result['DPD13_24']
+ DPD25_36 = dpd_result['DPD25_36']
+ # LatestDPD = 0
+ # DPD0_6 = 0
+ # DPD7_12 = 0
+ # DPD13_24 = 0
+ # DPD25_36 = 0
+
+ # call sansactioned amt transformation function
+ # for calculate sanctioned amt summary
+ sanctioned_amt_detail = CibilBusinessOperationService.getSanctionedAmtDetails({'AccountType':AccountType,'DateOpenedDisbursed':row['CreditFacilityCDDatesSanctionedDt'],'CurrentBalance':CurrentBalance,'HighCreditSanctionedAmount':SanctionedAmount})
+ CibilBusinessOperationService.mergeSanctionAmtDetails(sanctioned_amt_detail)
+ # end of call sansactioned amt transformation function
+
+ # temp = {'los_id':'MW12345','ref_no':application_reference_number,"consumer_name":CustomerName,"account_type":AccountType,"reported_and_certified_date":ReportedandCertifiedDate,"opened_date":OpendDate,"sanctioned_amount":SanctionedAmount,"current_balance":CurrentBalance,"emi_amount":EMIAmount,"overdue_amount":OverdueAmount,"repayment_tenure":RepaymentTenure,"status":Status,"ownership":Ownership,"current_dpd":CurrentDPD,'dpd0_6':DPD0_6,'dpd7_12':DPD7_12,'dpd13_24':DPD25_36,'dpd25_36':DPD25_36,'is_active':1,'createdAt':datetime.now().strftime("%Y-%m-%d %H:%M:%S"),'updatedAt':datetime.now().strftime("%Y-%m-%d %H:%M:%S"),'createdby':1,'updatedby':1}
+ temp = Out_active_and_closed_loans_details(losid=los_id,ref_no=application_reference_number,consumer_name=CustomerName,account_type=AccountType,reported_and_certified_date=ReportedandCertifiedDate,opened_date=OpendDate,sanctioned_amount=SanctionedAmount,current_balance=CurrentBalance,emi_amount=EMIAmount,overdue_amount=OverdueAmount,repayment_tenure=RepaymentTenure,status=Status,ownership=Ownership,current_dpd=CurrentDPD,highest_dpd_month_wise_bucket_or_count_0_to_6=DPD0_6,highest_dpd_month_wise_bucket_or_count_07_to_12=DPD7_12,highest_dpd_month_wise_bucket_or_count_13_to_24=DPD13_24,highest_dpd_month_wise_bucket_or_count_25_to_36=DPD25_36,is_active=1,createdAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),updatedAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),createdby=1,updatedby=1)
+ # print(temp);
+ # raise Exception('tata')
+ # temp = {'los_id':'MW12345'}
+ # if CurrentBalance != 0:
+ CibilBusinessOperationService.live_and_closed_account_summary.append(temp);
+ # print('idx',idx)
+
+ # raise Exception('manual stop')
+
+
+
+
+ CibilSummaryDataUpdateService.updateActiveOrClosedLoans(CibilBusinessOperationService.live_and_closed_account_summary)
+ CibilSummaryDataUpdateService.updateEnquirySummaryData(CibilBusinessOperationService.enquiry_amt_details_summary,application_reference_number,los_id)
+ CibilSummaryDataUpdateService.updateSanctionedSummaryAndOverallOpenedClosedLoans(CibilBusinessOperationService.sanctioned_amt_details_summary,application_reference_number,los_id)
+
+
+
+
+
+
+
+ return (CibilBusinessOperationService.sanctioned_amt_details_summary)
+ # return cibil_raw_data
diff --git a/services/CibilCommercialDataService.py b/services/CibilCommercialDataService.py
new file mode 100644
index 0000000..a95cbd6
--- /dev/null
+++ b/services/CibilCommercialDataService.py
@@ -0,0 +1,92 @@
+from services.dbservice import DbService
+from sqlalchemy.sql import text
+from app import db
+import time
+
+from Models.com_ac_history_and_dpd import Com_ac_history_and_dpd
+from Models.com_credit_facility_current_detail import Com_credit_facility_current_detail
+# from Models.con_enquiry_detail import Con_enquiry_detail
+from Models.month_bucket_master import Month_bucket_master
+from Models.com_borrower_profile import Com_borrower_profile
+from Models.com_enquiry_detail import Com_enquiry_detail
+
+
+class CibilCommercialDataService:
+
+ def getCreditFacilityCurrentDetails(application_reference_number,los_id):
+ # https://flask-sqlalchemy.palletsprojects.com/en/2.x/queries/
+ # print(application_reference_number)
+ # records = Com_credit_facility_current_detail.query.all()
+ start_time = time.time()
+ records = Com_credit_facility_current_detail.query.filter_by(ApplicationRefno = application_reference_number).all()
+ temp = []
+ for idx,record in enumerate(records):
+ # print(record.temp_id,'---',record.CreditFacilityCDcfSrNo[16:])
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ temp.append(row_as_dict)
+ # print("--- %s seconds ---" % (time.time() - start_time))
+ return temp
+
+
+ def getCommercialAcHistoryAndDPDDetails(application_reference_number,los_id):
+
+ # records = Com_ac_history_and_dpd.query.filter_by(ApplicationRefno = application_reference_number,BorrowerCurrentDetailsID = credit_facility_id).order_by(Com_ac_history_and_dpd.BorrowerCurrentDetailsID.asc()).all()
+ records = Com_ac_history_and_dpd.query.filter_by(ApplicationRefno = application_reference_number).order_by(Com_ac_history_and_dpd.BorrowerCurrentDetailsID.asc()).all()
+ temp = []
+ # print(records)
+ for record in records:
+ # print(record.id,'---',record.AccountTranDetailsID)
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ temp.append(row_as_dict)
+
+ return temp
+
+ def getMonthBucketMaster(mtype=None):
+
+ # records = Con_dpd_transaction_detail.query.filter_by(MemberRefNo = member_reference_number,AccountTranDetailsID = account_tran_details_id).order_by(Con_dpd_transaction_detail.StartDate.desc()).all()
+ records = Month_bucket_master.query.filter_by(type = (mtype),isactive = 1).order_by(Month_bucket_master.id.asc()).all()
+ temp = []
+ # print(records)
+ for record in records:
+ # print(record.id,'---',record.AccountTranDetailsID)
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ temp.append(row_as_dict)
+
+ return temp
+
+
+ def getCommercialBorrowerDetails(application_reference_number,los_id):
+
+ # records = Con_dpd_transaction_detail.query.filter_by(MemberRefNo = member_reference_number,AccountTranDetailsID = account_tran_details_id).order_by(Con_dpd_transaction_detail.StartDate.desc()).all()
+ records = Com_borrower_profile.query.filter_by(ApplicationRefno = application_reference_number).all()
+ temp = []
+ # print(records)
+ for record in records:
+ # print(record.id,'---',record.AccountTranDetailsID)
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ temp.append(row_as_dict)
+
+ return temp
+
+
+ def getCommercialsEnquriyDetails(application_reference_number,los_id):
+
+ # records = Con_dpd_transaction_detail.query.filter_by(MemberRefNo = member_reference_number,AccountTranDetailsID = account_tran_details_id).order_by(Con_dpd_transaction_detail.StartDate.desc()).all()
+ records = Com_enquiry_detail.query.filter_by(ApplicationRefno = application_reference_number).all()
+ temp = []
+ # print(records)
+ for record in records:
+ # print(record.id,'---',record.AccountTranDetailsID)
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ temp.append(row_as_dict)
+
+ return temp
+
+
+
+
diff --git a/services/CibilDataService.py b/services/CibilDataService.py
new file mode 100644
index 0000000..c786dc7
--- /dev/null
+++ b/services/CibilDataService.py
@@ -0,0 +1,164 @@
+# from services.dbservice import DbService
+from sqlalchemy.sql import text,func
+from app import db
+from flask import jsonify
+import decimal, datetime, json
+
+# from Models.con_account_transaction_detail import Con_account_transaction_detail
+# from Models.con_dpd_transaction_detail import Con_dpd_transaction_detail
+# from Models.con_enquiry_detail import Con_enquiry_detail
+from Models.month_bucket_master import Month_bucket_master
+from Models.intermediate_tables import In_borrower_detail,In_credit_facility,In_dpd_transaction_detail,In_enquiry_detail
+
+
+class CibilDataService:
+
+
+
+ # start Collecting Consumer CIBIL RawData of single member/applicant
+ # report by @param : member_reference_number
+ def getBorrowerDetails(reference_number,los_id,cibil_type):
+
+ # records = db.engine.execute(text('SELECT id ,BDeatailsID ,CONVERT(NVARCHAR, MemberReferenceNumber) as MemberReferenceNumber ,EnquiryMemberUserID ,SubjectReturnCode ,CONVERT(NVARCHAR, EnquiryControlNumber) as EnquiryControlNumber ,CONVERT(VARCHAR,DateTimeProcessed) as DateTimeProcessed ,ConsumerNameField1 ,ConsumerNameField2 ,ConsumerNameField3 ,ConsumerNameField4 ,ConsumerNameField5 ,CONVERT(VARCHAR,DateofBirth) as DateofBirth ,Gender ,DateofEntryforErrorCode ,ErrorSegmentTag ,ErrorCode ,DateofEntryforCIBILRemarksCode ,CIBILRemarks ,DateofEntryforErrorDisputeRemarksCode ,ErrorDisputeRemarksCode ,ErrorDisputeRemarksCode2 ,AccountType ,CONVERT(VARCHAR,DateReportedAndCertified) as DateReportedAndCertified ,Occupation ,CONVERT(NVARCHAR, Income) as Income ,NetGrossIncomeIndicator ,MonthlyAnnualIncomeIndicator ,DateOfEntryforErrorCode1 ,ErrorCode1 ,DateOfEntryForCIBILRemarksCode1 ,CIBILRemarksCode ,DateOfEntryForErrorDisputeRemarksCode1 ,ErrorDisputeRemarksCode1 ,ATErrorDisputeRemarksCode1 ,ATErrorDisputeRemarksCode2 ,DateOfEntry ,DisputeRemarksLine ,EMailID ,AccountNumber ,CONVERT(VARCHAR,createdAt) as createdAt ,CONVERT(VARCHAR,updatedAt) as updatedAt ,createdby ,updatedby FROM con_borrower_detail where MemberReferenceNumber = :member_reference_number'),{'member_reference_number':member_reference_number})
+ # records = records.fetchall()
+ # print(len(records))
+ records = In_borrower_detail.query.filter_by(ReferenceNumber = reference_number,losid = los_id,cibil_type = cibil_type).all()
+ # print(len(records))
+ # print((records))
+ data = []
+ # print(field_names)
+ for idx,i in enumerate(records):
+ # print('###### START #######')
+ # print((i))
+ # print(idx,str(i.MemberReferenceNumber))
+ # records[idx].MemberReferenceNumber = str(i.MemberReferenceNumber)
+ # print('**************************************')
+ row_as_dict = {column: str(getattr(i, column)) for column in i.__table__.c.keys()}
+ # print('###### END #######')
+ data.append(row_as_dict)
+
+ # print(result)
+
+ # exit()
+ return data
+
+
+
+
+ def getCreditFacilityDetails(reference_number,los_id,cibil_type):
+ # https://flask-sqlalchemy.palletsprojects.com/en/2.x/queries/
+
+ # records = Con_account_transaction_detail.query.all()
+ records = In_credit_facility.query.filter_by(ReferenceNumber = reference_number,losid = los_id,cibil_type = cibil_type).all()
+ # records = In_credit_facility.query.filter_by(losid = los_id).all()
+ temp = []
+ # print(records)
+ for record in records:
+ # print(record.id,'---',record.AccountTranDetailsID)
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ # t = CibilConsumerDataService.getConsumerDPDDetails(member_reference_number,row_as_dict['AccountTranDetailsID'
+ # ])
+ # row_as_dict['dpd'] = t
+ temp.append(row_as_dict)
+
+ return temp
+
+ def getUniqueCreditFacilityDetails(los_id):
+ # https://flask-sqlalchemy.palletsprojects.com/en/2.x/queries/
+
+ # records = Con_account_transaction_detail.query.all() func.max(In_credit_facility.grp_str)
+ # records = db.session.query(In_credit_facility.losid, db.func.max(In_credit_facility.losid).label('active_machines')).group_by(In_credit_facility.losid).all()
+ records = db.session.query(db.func.max(In_credit_facility.losid).label('losid'),db.func.max(In_credit_facility.AccountType).label('AccountType'),db.func.max(In_credit_facility.month_bucket_index).label('month_bucket_index'),db.func.max(In_credit_facility.DateOpenedDisbursed).label('DateOpenedDisbursed'),db.func.max(In_credit_facility.DateClosed).label('DateClosed'),db.func.max(In_credit_facility.CurrentBalance).label('CurrentBalance'),db.func.max(In_credit_facility.HighCreditSanctionedAmount).label('HighCreditSanctionedAmount'),db.func.max(In_credit_facility.CreditLimit).label('CreditLimit'),func.max(In_credit_facility.grp_str).label('grp_str')).filter(In_credit_facility.losid == los_id).group_by(In_credit_facility.grp_str).all()
+
+ return json.loads(json.dumps([dict(r) for r in records], default=CibilDataService.alchemyencoder))
+ # records = In_credit_facility.query(func.max(In_credit_facility.grp_str)).filter_by(losid = los_id).all()
+ temp = []
+ # print(type(records))
+ # print(len(records))
+ for record in records:
+ # print('---',record.active_machines)
+ # print(type(record),'--',(record))
+ # print(dict(record),'--')
+ # row_as_dict = {column: str(getattr(record, column.name)) for column in record.__table__.columns}
+ # row_as_dict = record._mapping
+ # print(jsonify(json_list = record))
+
+ # t = CibilConsumerDataService.getConsumerDPDDetails(member_reference_number,row_as_dict['AccountTranDetailsID'
+ # ])
+ # row_as_dict['dpd'] = t
+ temp.append(dict(record))
+
+ return temp
+
+
+ def getDPDDetails(reference_number,los_id,cibil_type):
+
+
+ records = In_dpd_transaction_detail.query.filter_by(ReferenceNumber = reference_number,cibil_type = cibil_type).order_by(In_dpd_transaction_detail.AccountTranDetailsID.desc(),In_dpd_transaction_detail.StartDate.desc()).all()
+ # records = In_dpd_transaction_detail.query.filter_by(ReferenceNumber = reference_number,losid = los_id,cibil_type = cibil_type).order_by(In_dpd_transaction_detail.AccountTranDetailsID.desc(),In_dpd_transaction_detail.StartDate.desc()).all()
+ temp = []
+ # print(records)
+ for record in records:
+ # print(record.id,'---',record.AccountTranDetailsID)
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ temp.append(row_as_dict)
+
+ return temp
+
+
+ def getEnquriyDetails(reference_number,los_id,cibil_type):
+
+ # records = Con_dpd_transaction_detail.query.filter_by(MemberRefNo = member_reference_number,AccountTranDetailsID = account_tran_details_id).order_by(Con_dpd_transaction_detail.StartDate.desc()).all()
+ records = In_enquiry_detail.query.filter_by(ReferenceNumber = reference_number,losid = los_id,cibil_type = cibil_type).order_by(In_enquiry_detail.DateOfEnquiry.desc()).all()
+ temp = []
+ # print(records)
+ for record in records:
+ # print(record.id,'---',record.AccountTranDetailsID)
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ temp.append(row_as_dict)
+
+ return temp
+
+ def getUniqueEnquriyDetails(los_id):
+ # print('getUniqueEnquriyDetails' + los_id)
+ # records = Con_dpd_transaction_detail.query.filter_by(MemberRefNo = member_reference_number,AccountTranDetailsID = account_tran_details_id).order_by(Con_dpd_transaction_detail.StartDate.desc()).all()
+ records = In_enquiry_detail.query.filter_by(losid = los_id).order_by(In_enquiry_detail.DateOfEnquiry.desc()).all()
+ temp = []
+ # print(records)
+ for record in records:
+ # print(record.id,'---',record.AccountTranDetailsID)
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ temp.append(row_as_dict)
+
+ return temp
+
+
+ def getMonthBucketMaster(mtype=None):
+
+ # records = Con_dpd_transaction_detail.query.filter_by(MemberRefNo = member_reference_number,AccountTranDetailsID = account_tran_details_id).order_by(Con_dpd_transaction_detail.StartDate.desc()).all()
+ records = Month_bucket_master.query.filter_by(type = (mtype),isactive = 1).order_by(Month_bucket_master.id.asc()).all()
+ temp = []
+ # print(records)
+ for record in records:
+ # print(record.id,'---',record.AccountTranDetailsID)
+ row_as_dict = {column: str(getattr(record, column)) for column in record.__table__.c.keys()}
+ # print(row_as_dict)
+ temp.append(row_as_dict)
+
+ return temp
+
+ def alchemyencoder(obj):
+ # """JSON encoder function for SQLAlchemy special classes."""
+ if isinstance(obj, datetime.date):
+ return obj.isoformat()
+ elif isinstance(obj, decimal.Decimal):
+ return float(obj)
+
+
+
+
+
diff --git a/services/CibilMasterDataService.py b/services/CibilMasterDataService.py
new file mode 100644
index 0000000..8f68104
--- /dev/null
+++ b/services/CibilMasterDataService.py
@@ -0,0 +1,98 @@
+# from .CibilConsumerDataService import CibilConsumerDataService
+from .CibilCommercialDataService import CibilCommercialDataService
+
+class CibilMasterDataService :
+
+
+ cibil_rawdata = {}
+ # consumer_cibil_rawdata = []
+ # commercial_cibil_rawdata = []
+
+ consumer_borrower_details = []
+ account_transaction_details = []
+ consumer_dpd_details = []
+ consumer_enquiry_details = []
+ dpd_month_buckets = []
+ sanction_summary_month_buckets = []
+ enquiry_summary_month_buckets = []
+
+ com_credit_facility_current_details = []
+ com_dpd_details = []
+ com_enquiry_details = []
+ com_borrower_details = []
+
+
+
+ # start Collecting both Consumer and Commercial CIBIL RawData of single member/applicant
+ # report by @param : member_reference_number
+ def getCIBILRawData(reference_number,los_id,type):#type 1 = consumer, type 2 = commercial
+ if type == 1:# if consumer
+ CibilMasterDataService.cibil_rawdata['consumer_cibil_rawdata'] = CibilMasterDataService.getAllConsumerCIBILRawData(reference_number,los_id)
+ elif type == 2:
+ CibilMasterDataService.cibil_rawdata['commercial_cibil_rawdata'] = CibilMasterDataService.getAllCommercialCIBILRawData(reference_number,los_id)
+
+ CibilMasterDataService.cibil_rawdata['masters'] = CibilMasterDataService.getAllMastersData()
+ # CibilMasterDataService.cibil_rawdata.append({'consumer_cibil_rawdata':CibilMasterDataService.getAllConsumerCIBILRawData(member_reference_number)})
+
+ return CibilMasterDataService.cibil_rawdata
+
+ # start Collecting Consumer CIBIL RawData of single member/applicant
+ # report by @param : member_reference_number
+ def getAllConsumerCIBILRawData(member_reference_number,los_id):
+
+ CibilMasterDataService.consumer_borrower_details = CibilConsumerDataService.getConsumerBorrowerDetails(member_reference_number,los_id)
+ CibilMasterDataService.account_transaction_details = CibilConsumerDataService.getConsumerAccountTransactionDetails(member_reference_number,los_id)
+ CibilMasterDataService.consumer_dpd_details = CibilConsumerDataService.getConsumerDPDDetails(member_reference_number,los_id)
+ CibilMasterDataService.consumer_enquiry_details = CibilConsumerDataService.getConsumerEnquriyDetails(member_reference_number,los_id)
+
+ # print(len(CibilMasterDataService.account_transaction_details),type(CibilMasterDataService.account_transaction_details))
+ # if len(CibilMasterDataService.account_transaction_details) > 0:
+
+ # for i,acc_trans_detail in enumerate(CibilMasterDataService.account_transaction_details):
+ # # consumer_dpd_details = {'data':'msg'}
+ # consumer_dpd_details = CibilConsumerDataService.getConsumerDPDDetails(member_reference_number,acc_trans_detail['AccountTranDetailsID'])
+ # CibilMasterDataService.account_transaction_details[i]['consumer_dpd_details'] = consumer_dpd_details
+
+ overall_data = {}
+
+ overall_data['consumer_borrower_details'] = CibilMasterDataService.consumer_borrower_details
+ overall_data['account_transaction_details'] = CibilMasterDataService.account_transaction_details
+ overall_data['consumer_dpd_details'] = CibilMasterDataService.consumer_dpd_details
+ overall_data['consumer_enquiry_details'] = CibilMasterDataService.consumer_enquiry_details
+
+ return overall_data
+
+
+ # start Collecting Commercial CIBIL RawData of single member/applicant
+ # report by @param : member_reference_number
+ def getAllCommercialCIBILRawData(application_reference_number,los_id):
+ print('getAllCommercialCIBILRawData')
+ CibilMasterDataService.com_borrower_details = CibilCommercialDataService.getCommercialBorrowerDetails(application_reference_number,los_id)
+ CibilMasterDataService.com_credit_facility_current_details = CibilCommercialDataService.getCreditFacilityCurrentDetails(application_reference_number,los_id)
+ CibilMasterDataService.com_dpd_details = CibilCommercialDataService.getCommercialAcHistoryAndDPDDetails(application_reference_number,los_id)
+ CibilMasterDataService.com_enquiry_details = CibilCommercialDataService.getCommercialsEnquriyDetails(application_reference_number,los_id)
+
+ overall_data = {}
+
+ overall_data['com_credit_facility_current_details'] = CibilMasterDataService.com_credit_facility_current_details
+ overall_data['com_dpd_details'] = CibilMasterDataService.com_dpd_details
+ overall_data['com_enquiry_details'] = CibilMasterDataService.com_enquiry_details
+ overall_data['com_borrower_details'] = CibilMasterDataService.com_borrower_details
+
+ return overall_data
+
+
+ def getAllMastersData():
+ print('getAllMastersData')
+ CibilMasterDataService.dpd_month_buckets = CibilConsumerDataService.getMonthBucketMaster('DPD')
+ CibilMasterDataService.sanction_summary_month_buckets = CibilConsumerDataService.getMonthBucketMaster('SAN_SUM')
+ CibilMasterDataService.enquiry_summary_month_buckets = CibilConsumerDataService.getMonthBucketMaster('ENQ_SUM')
+
+ overall_data = {}
+
+ overall_data['dpd_month_buckets'] = CibilMasterDataService.dpd_month_buckets
+ overall_data['sanction_summary_month_buckets'] = CibilMasterDataService.sanction_summary_month_buckets
+ overall_data['enquiry_summary_month_buckets'] = CibilMasterDataService.enquiry_summary_month_buckets
+
+ return overall_data
+
diff --git a/services/CibilSummaryDataUpdateService.py b/services/CibilSummaryDataUpdateService.py
new file mode 100644
index 0000000..331e8b4
--- /dev/null
+++ b/services/CibilSummaryDataUpdateService.py
@@ -0,0 +1,108 @@
+from app import db
+from flask import current_app as my_app
+from datetime import datetime
+from time import time
+
+# from Models.op_sanction_amount_frequency import Op_sanction_amount_frequency
+# from Models.op_rtr_summary_of_active_loans import Op_rtr_summary_of_active_loans
+# from Models.op_snapshot_of_closed_loans import Op_snapshot_of_closed_loans
+from Models.op_enquiry import EnquiryParent,EnquiryChild
+from Models.op_sanction import SanctionParent,SanctionChild
+
+
+class CibilSummaryDataUpdateService :
+
+
+ def updateActiveOrClosedLoans(dataSet):
+ # obj = Op_rtr_summary_of_active_loans(los_id=data['los_id'],ref_no=data['ref_no'],consumer_name=data['consumer_name'],account_type=data['account_type'],reported_and_certified_date=data['reported_and_certified_date'],opened_date=data['opened_date'],sanctioned_amount=data['sanctioned_amount'],current_balance=data['current_balance'],emi_amount=data['emi_amount'],overdue_amount=data['overdue_amount'],repayment_tenure=data['repayment_tenure'],status=data['status'],ownership=data['ownership'],current_dpd=data['current_dpd'],dpd0_6=data['dpd0_6'],dpd7_12=data['dpd7_12'],dpd13_24=data['dpd13_24'],dpd25_36=data['dpd25_36'],is_active=data['is_active'],createdAt=data['createdAt'],updatedAt=data['updatedAt'],createdby=data['createdby'],updatedby=data['updatedby'])
+ # db.session.add(dataSet)
+ # db.session.add_all(dataSet)
+
+ db.session.bulk_save_objects(dataSet,return_defaults = True)
+ db.session.commit()
+ logText = str(len(dataSet)) + ' - Active Closed loans Saved'
+ print(logText)
+ return str(len(dataSet))
+
+
+ def updateSanctionedSummaryAndOverallOpenedClosedLoans(sanctioned_amt_details,reference_number,los_id,cibil_type,output_type):
+ print('updateSanctionedSummaryAndOverallOpenedClosedLoans',len(sanctioned_amt_details))
+ parent_inserted_count = 0
+ # over_start_time = time()
+ if len(sanctioned_amt_details) > 0:
+ # over_all_enquiry_data = []
+
+ for index,sanctioned_amt in enumerate(sanctioned_amt_details):
+ # print(index,sanctioned_amt,sanctioned_amt_details[sanctioned_amt])
+ # print('*********************************')
+ parent = SanctionParent(output_type=output_type,losid=los_id,ref_no=reference_number,facility_type=sanctioned_amt,createdAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),updatedAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),createdby=1,updatedby=1,total_amt=sanctioned_amt_details[sanctioned_amt]['total_amt'],total_count=sanctioned_amt_details[sanctioned_amt]['total_count'],open_total_amt=sanctioned_amt_details[sanctioned_amt]['open_total_amt'],open_total_count=sanctioned_amt_details[sanctioned_amt]['open_total_count'],closed_total_amt=sanctioned_amt_details[sanctioned_amt]['closed_total_amt'],closed_total_count=sanctioned_amt_details[sanctioned_amt]['closed_total_count'])
+ start_time = time()
+ db.session.add(parent)
+
+
+ # Child(months_range="bar",amt=10,count=12,is_active=1,parent=parent)
+
+ db.session.commit()
+ # print("--- %s Parent insert time seconds ---" %(time() - start_time))
+ if parent.id: parent_inserted_count += 1
+ childDataSet = []
+ for idx,sanction_child_data in enumerate(sanctioned_amt_details[sanctioned_amt]):
+ if sanction_child_data != "total_amt" and sanction_child_data != "total_count" and sanction_child_data != "open_total_amt" and sanction_child_data != "open_total_count" and sanction_child_data != "closed_total_amt" and sanction_child_data != "closed_total_count":
+ # print(sanction_child_data,sanctioned_amt_details[sanctioned_amt][sanction_child_data])
+ child = SanctionChild(sanction_amt_id=parent.id,months_range=sanction_child_data,amt=sanctioned_amt_details[sanctioned_amt][sanction_child_data]['amt'],count=sanctioned_amt_details[sanctioned_amt][sanction_child_data]['count'],opening_amt=sanctioned_amt_details[sanctioned_amt][sanction_child_data]['openamt'],opening_count=sanctioned_amt_details[sanctioned_amt][sanction_child_data]['opencount'],closing_amt=sanctioned_amt_details[sanctioned_amt][sanction_child_data]['closeamt'],closing_count=sanctioned_amt_details[sanctioned_amt][sanction_child_data]['closecount'],createdAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),updatedAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
+ childDataSet.append(child)
+ # print(childDataSet)
+ db.session.bulk_save_objects(childDataSet)
+ db.session.commit()
+ # print("--- %s Child insert time seconds ---" %(time() - start_time))
+
+ # print("--- %s overall time ---" %(time() - over_start_time))
+ return parent_inserted_count
+
+
+
+ def updateEnquirySummaryData(enquiry_details,reference_number,los_id,cibil_type,output_type):
+ print('updateEnquirySummaryData', len(enquiry_details))
+ parent_inserted_count = 0
+ # raise Exception('tata')
+ if len(enquiry_details) > 0:
+ # over_all_enquiry_data = []
+ for index,enquiry_detail in enumerate(enquiry_details):
+ # over_all_enquiry_data.append(EnquiryParent(los_id='MWTEST',ref_no='TESTREF',facility_type=enquiry_detail,is_active=1,createdAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),updatedAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),createdby=1,updatedby=1,total=enquiry_details[enquiry_detail]['total']))
+
+ # print(index,enquiry_detail,enquiry_details[enquiry_detail])
+ # print('*********************************')
+ # print(over_all_enquiry_data)
+ parent = EnquiryParent(output_type=output_type,losid=los_id,ref_no=reference_number,facility_type=enquiry_detail,is_active=1,createdAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),updatedAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),createdby=1,updatedby=1,total_amt=enquiry_details[enquiry_detail]['total_amt'],total_count=enquiry_details[enquiry_detail]['total_count'])
+ start_time = time()
+ db.session.add(parent)
+
+
+ # Child(months_range="bar",amt=10,count=12,is_active=1,parent=parent)
+
+ db.session.commit()
+ # print("--- %s Parent insert time seconds ---" %(time() - start_time))
+ if parent.id: parent_inserted_count += 1
+ childDataSet = []
+ for idx,enquiry_child_data in enumerate(enquiry_details[enquiry_detail]):
+ if enquiry_child_data != "total_amt" and enquiry_child_data != "total_count":
+ # print(enquiry_child_data,enquiry_details[enquiry_detail][enquiry_child_data])
+ child = EnquiryChild(enquiry_amount_id=parent.id,months_range=enquiry_child_data,amt=enquiry_details[enquiry_detail][enquiry_child_data]['amt'],count=enquiry_details[enquiry_detail][enquiry_child_data]['count'],is_active=1,createdAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"),updatedAt=datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
+ childDataSet.append(child)
+
+ # print(childDataSet)
+ db.session.bulk_save_objects(childDataSet)
+ db.session.commit()
+ # print("--- %s Child insert time seconds ---" %(time() - start_time))
+
+ return parent_inserted_count
+
+
+
+
+
+
+
+
+
+
diff --git a/services/DpdCalculationService.py b/services/DpdCalculationService.py
new file mode 100644
index 0000000..60a4ea2
--- /dev/null
+++ b/services/DpdCalculationService.py
@@ -0,0 +1,220 @@
+from datetime import datetime
+from collections import Counter
+import re
+
+class DpdCalculationService:
+
+ def dpdCalculation(accountTranDetailsID=None,Consumer_dpd_details=None,dpd_month_bucket_master=None):
+ # print('dpdCalculation called',accountTranDetailsID,len(Consumer_dpd_details))
+
+ # print(dpd_month_bucket_master)
+ # month_index = 0
+ currentDPD = 0;
+ DPD0_6,DPD7_12,DPD13_24,DPD25_36 = [],[],[],[]
+ # DPD0_6_BUCKET,DPD7_12_BUCKET,DPD13_24_BUCKET,DPD25_36_BUCKET = [{'name':'20-30','from':20,'to':30},{'name':'31-40','from':31,'to':40},{'name':'41-50','from':41,'to':60}],[],[],[]
+
+ for idx,dpd in enumerate(Consumer_dpd_details):
+
+ # if accountTranDetailsID == '388857':
+ # print('#########################BREAK')
+ # break
+
+ #in future introduce if condition like idx <=36
+ if dpd['AccountTranDetailsID'] == accountTranDetailsID:
+
+
+ # month_index+=1
+
+ # if month_index == 37:break
+ # month = (datetime.strptime((dpd['StartDate'].split(" ")[0]), "%Y-%m-%d")).month
+ month_bucket_index = int(dpd['month_bucket_index'])
+ if month_bucket_index == 1: currentDPD = month_bucket_index
+ month_bucket = '0_6' if month_bucket_index <= 6 else '7_12' if month_bucket_index >= 7 and month_bucket_index <= 12 else '13_24' if month_bucket_index >=13 and month_bucket_index <= 24 else '25_36' if month_bucket_index >= 25 and month_bucket_index <= 36 else None
+ currentDPDcode = (int(dpd['Code'])) if dpd['Code'].isnumeric() else 0
+ dynamic_dpd_month_bucket = None if month_bucket is None else 'DPD'+month_bucket
+ # dynamic_dpd_month_range_bucket = dynamic_dpd_month_bucket + '_BUCKET'
+ # print(vars()[dynamic_dpd_month_bucket],vars()[dynamic_dpd_month_range_bucket])
+ # if len(vars()[dynamic_dpd_month_range_bucket]) > 0:
+ # for single_date_range in vars()[dynamic_dpd_month_range_bucket]:
+ # if currentDPDcode != 0 and currentDPDcode >= int(single_date_range['from']) and currentDPDcode <= int(single_date_range['to']):
+ # print(currentDPDcode,'-',single_date_range['name'])
+ # vars()[dynamic_dpd_month_bucket].append(single_date_range['name'])
+ # break
+
+
+ currentDPDMonth = 0
+ if dynamic_dpd_month_bucket is not None:
+ currentDPDMonth = DpdCalculationService.dpdFindDaysBucket(dpd_month_bucket_master,currentDPDcode)
+ if currentDPDMonth != 0:
+ vars()[dynamic_dpd_month_bucket].append(currentDPDMonth)
+ # print(vars()[dynamic_dpd_month_bucket])
+
+
+ # print(idx,dpd['AccountTranDetailsID'],dpd['StartDate'],month,month_bucket,dynamic_dpd_month_bucket,currentDPDMonth,currentDPDcode)
+
+ # print(DPD0_6,DPD7_12,DPD13_24,DPD25_36)
+ DPD0_6 = DpdCalculationService.findMaxCountofDPDDays(DPD0_6);
+ DPD7_12 = DpdCalculationService.findMaxCountofDPDDays(DPD7_12);
+ DPD13_24 = DpdCalculationService.findMaxCountofDPDDays(DPD13_24);
+ DPD25_36 = DpdCalculationService.findMaxCountofDPDDays(DPD25_36);
+ # print('final*****',DPD0_6)
+ DPD0_6 = DPD0_6['days_range'] +'(' + DPD0_6['count'] +')' if 'days_range' in DPD0_6 else '0'
+ DPD7_12 = DPD7_12['days_range'] +'(' + DPD7_12['count'] +')' if 'days_range' in DPD7_12 else '0'
+ DPD13_24 = DPD13_24['days_range'] +'(' + DPD13_24['count'] +')' if 'days_range' in DPD13_24 else '0'
+ DPD25_36 = DPD25_36['days_range'] +'(' + DPD25_36['count'] +')' if 'days_range' in DPD25_36 else '0'
+ return {'currentDPD':currentDPD,'DPD0_6':DPD0_6,'DPD7_12':DPD7_12,'DPD13_24':DPD13_24,'DPD25_36':DPD25_36}
+
+
+
+
+
+ def monthDiffBWDates(fromDate,endDate):
+ # start = datetime.strptime((fromDate.split(" ")[0]), "%Y-%m-%d")
+ # end = datetime.strptime((endDate.split(" ")[0]), "%Y-%m-%d")
+ # months = (end.year - start.year) * 12 + (end.month - start.month )
+ # print('monhs',months)
+ # print('')
+
+ # return months
+ str = 'xxx'
+ try:
+ val = int(str)
+ print(type(val))
+ except IOError:
+ print(type(str))
+
+
+
+ def dpdFindDaysBucket(month_bucket_master,factor):
+
+ #DPD month bucket calculation start
+ # print(dpd_month_bucket_master)
+ for dpd_month_bucket in month_bucket_master:
+ # print(dpd_month_bucket)
+ # print(type(dpd_month_bucket['range_from']),'***',dpd_month_bucket['range_from'].isnumeric())
+ # print(type(dpd_month_bucket['range_to']),'***',dpd_month_bucket['range_to'].isnumeric())
+
+ range_from = int(dpd_month_bucket['range_from']) if (type(dpd_month_bucket['range_from']) is str and dpd_month_bucket['range_from'].isnumeric()) else None
+
+ range_to = int(dpd_month_bucket['range_to']) if (type(dpd_month_bucket['range_to']) is str and dpd_month_bucket['range_to'].isnumeric()) else None
+
+ # range_to = int(dpd_month_bucket['range_to']) if (dpd_month_bucket['range_to'] is str and dpd_month_bucket['range_to'].isnumeric()) else dpd_month_bucket['range_to']
+ factor = int(factor) if isinstance(factor,str) and factor.isnumeric() else factor if isinstance(factor,int) else 0
+ if range_from != None and range_to != None:
+ # print((range_from),'###',(range_to),range_from != None,currentDPDcode)
+ if factor >= (range_from) and factor <= (range_to):
+ # vars()[dynamic_dpd_month_bucket].append(dpd_month_bucket['name'])
+ return dpd_month_bucket['name']
+ # break
+ elif range_to == None:
+ if factor >= (range_from):
+ # vars()[dynamic_dpd_month_bucket].append(dpd_month_bucket['name'])
+ return dpd_month_bucket['name']
+ # break
+ elif range_from == None:
+ if factor >= (range_to):
+ # vars()[dynamic_dpd_month_bucket].append(dpd_month_bucket['name'])
+ return dpd_month_bucket['name']
+ # break
+ else:
+ return 0
+ # break
+
+
+ #DPD month bucket calculation end
+
+ def findMaxCountofDPDDays(listOfDaysCount):
+ # print('findMaxCountofDPDDays******',listOfDaysCount)
+ UniquelistOfDaysCount = Counter(listOfDaysCount)
+ days_count_list = (list(UniquelistOfDaysCount.values()))
+ if len(days_count_list) > 0:
+ return {'days_range':(listOfDaysCount[days_count_list.index(max(days_count_list))]),'count': str(max(days_count_list))}
+ else:
+ return {}
+
+
+# DpdCalculationService.monthDiffBWDates('2014-02-03 00:00:00','2022-01-14 11:16:55.097000')
+
+ def commercialDpdCalculation(creditFacilitySno = None,com_dpd_details=None,dpd_month_bucket_master=None):
+ # print('dpdCalculation called',creditFacilitySno,len(com_dpd_details))
+
+ # print(dpd_month_bucket_master)
+ month_index = 0
+ currentDPD = 0;
+ DPD0_6,DPD7_12,DPD13_24,DPD25_36 = [],[],[],[]
+ # DPD0_6_BUCKET,DPD7_12_BUCKET,DPD13_24_BUCKET,DPD25_36_BUCKET = [{'name':'20-30','from':20,'to':30},{'name':'31-40','from':31,'to':40},{'name':'41-50','from':41,'to':60}],[],[],[]
+
+ for idx,dpd in enumerate(com_dpd_details):
+
+ if creditFacilitySno[16:] == 2:
+ print('#########################BREAK')
+ break
+
+ #in future introduce if condition like idx <=36
+ if dpd['BorrowerCurrentDetailsID'] == creditFacilitySno[16:]:
+
+
+ month_index+=1
+ #find number in string i.e 25 in 25 days past
+ tempDPD = re.findall('[0-9]+', dpd['CFHistory24MonthsACorDPD'])
+ tempDPD = tempDPD[0] if len(tempDPD) > 0 else 0
+
+ if month_index == 1: currentDPD = tempDPD
+ if month_index == 37:break
+ # month = (datetime.strptime((dpd['StartDate'].split(" ")[0]), "%Y-%m-%d")).month
+ month = month_index
+ month_bucket = '0_6' if month <= 6 else '7_12' if month >= 7 and month <= 12 else '13_24' if month >=13 and month <= 24 else '25_36' if month >= 25 and month <= 36 else 'None'
+ currentDPDcode = (int(tempDPD)) if tempDPD is not str else 0
+ dynamic_dpd_month_bucket = 'DPD'+month_bucket
+ currentDPDMonth = DpdCalculationService.dpdFindDaysBucket(dpd_month_bucket_master,currentDPDcode)
+ if currentDPDMonth != 0:
+ vars()[dynamic_dpd_month_bucket].append(currentDPDMonth)
+ # print(vars()[dynamic_dpd_month_bucket])
+
+
+ # print(idx,dpd['BorrowerCurrentDetailsID'],dpd['CFHistory24Monthsmonth'],month,month_bucket,dynamic_dpd_month_bucket,currentDPDMonth,currentDPDcode)
+
+ # print(DPD0_6,DPD7_12,DPD13_24,DPD25_36)
+ DPD0_6 = DpdCalculationService.findMaxCountofDPDDays(DPD0_6);
+ DPD7_12 = DpdCalculationService.findMaxCountofDPDDays(DPD7_12);
+ DPD13_24 = DpdCalculationService.findMaxCountofDPDDays(DPD13_24);
+ DPD25_36 = DpdCalculationService.findMaxCountofDPDDays(DPD25_36);
+ # print('final*****',DPD0_6)
+ DPD0_6 = DPD0_6['days_range'] +'(' + DPD0_6['count'] +')' if 'days_range' in DPD0_6 else '0'
+ DPD7_12 = DPD7_12['days_range'] +'(' + DPD7_12['count'] +')' if 'days_range' in DPD7_12 else '0'
+ DPD13_24 = DPD13_24['days_range'] +'(' + DPD13_24['count'] +')' if 'days_range' in DPD13_24 else '0'
+ DPD25_36 = DPD25_36['days_range'] +'(' + DPD25_36['count'] +')' if 'days_range' in DPD25_36 else '0'
+ return {'currentDPD':currentDPD,'DPD0_6':DPD0_6,'DPD7_12':DPD7_12,'DPD13_24':DPD13_24,'DPD25_36':DPD25_36}
+
+
+ def checkDateInLatest36Months(date,latest_36months_skeleton):
+ print('checkDateInLatest36Months')
+ temp_dpd_date = (datetime.datetime.strptime(date, "%Y-%m-%d"))
+ # print(temp_dpd_date.month)
+ return_data = 0
+ for month_index,skeleton_date in enumerate(latest_36months_skeleton):
+ if (temp_dpd_date.year == skeleton_date.year) and (temp_dpd_date.month == skeleton_date.month):
+ print(month_index,':',date, ' - is in - ', (month_index + 1), ' bucket')
+ return_data = (month_index + 1)
+ break
+ return return_data
+
+
+
+
+ def generateMonthSkeleton(date,month_size = 36,):
+ latest_36months_skeleton = []
+ print('generateMonthSkeleton')
+ date = datetime.datetime.strptime(date, "%Y-%m-%d")
+ month_count = 1
+ while month_count <= 36 :
+ day = date - relativedelta(months=month_count)
+ latest_36months_skeleton.append((day))
+ month_count += 1
+
+ return latest_36months_skeleton
+
+
+
+
+
\ No newline at end of file
diff --git a/services/MyCustomJSONEncoder.py b/services/MyCustomJSONEncoder.py
new file mode 100644
index 0000000..d825f7d
--- /dev/null
+++ b/services/MyCustomJSONEncoder.py
@@ -0,0 +1,10 @@
+import decimal
+from flask import Flask, json
+
+class MyJSONEncoder(json.JSONEncoder):
+
+ def default(self, obj):
+ if isinstance(obj, decimal.Decimal):
+ # Convert decimal instances to strings.
+ return str(obj)
+ return super(MyJSONEncoder, self).default(obj)
\ No newline at end of file
diff --git a/services/PandsSampleDataDrameServeice.py b/services/PandsSampleDataDrameServeice.py
new file mode 100644
index 0000000..afdc68d
--- /dev/null
+++ b/services/PandsSampleDataDrameServeice.py
@@ -0,0 +1,23 @@
+import pandas as pd
+from services.CibilBusinessOperationService import CibilBusinessOperationService
+def getDataFrame():
+ dataFrame = pd.DataFrame()
+ # dataFrame = pd.DataFrame(columns = ['Name', 'Articles', 'Improved'])
+ # print(df)
+
+ # append rows to an empty DataFrame
+ dataFrame = dataFrame.append({'Name' : 'Ankit', 'Articles' : 97, 'Improved' : 2200},
+ ignore_index = True)
+ dataFrame = dataFrame.append({'Name' : 'Aishwary', 'Articles' : 30, 'Improved' : 50},
+ ignore_index = True)
+ dataFrame = dataFrame.append({'Name' : 'yash', 'Articles' : 17, 'Improved' : 220},
+ ignore_index = True)
+
+ print(dataFrame)
+ return dataFrame
+
+def getCIBILDataFrame():
+ py_dict = CibilBusinessOperationService.doCIBILOperations(99999999999)
+ dataFrame = pd.DataFrame.from_dict(py_dict)
+ return dataFrame
+
diff --git a/services/SampleDataProviderService.py b/services/SampleDataProviderService.py
new file mode 100644
index 0000000..13d733a
--- /dev/null
+++ b/services/SampleDataProviderService.py
@@ -0,0 +1,12 @@
+import json
+
+class SampleDataProviderService:
+
+ def getCIBILRawData(reference_number,type):
+ filename = './data.json' if type == 1 else './com.json' if type == 2 else ''
+ with open(filename) as json_file:
+ data = json.load(json_file)
+
+ return data
+
+
\ No newline at end of file
diff --git a/services/db.py b/services/db.py
new file mode 100644
index 0000000..3430817
--- /dev/null
+++ b/services/db.py
@@ -0,0 +1,10 @@
+# from __main__ import app
+from flask_sqlalchemy import SQLAlchemy
+# from app import db
+# def db():
+db = SQLAlchemy()
+
+
+
+
+
\ No newline at end of file
diff --git a/services/dbservice.py b/services/dbservice.py
new file mode 100644
index 0000000..b19fd8b
--- /dev/null
+++ b/services/dbservice.py
@@ -0,0 +1,32 @@
+import pypyodbc
+import urllib
+
+class DbService:
+
+ myDB = None
+
+ def __init__(self):
+ print('DbService init called')
+ self.Driver = '{ODBC Driver 17 for SQL Server}'
+
+ def getDBConnection(self,Server ='',Database = '',uid='', pwd=''):
+ # myDB = pypyodbc.connect('Driver={ODBC Driver 17 for SQL Server};Server=34.121.71.79,1433;Database=gst_staging;uid=cet;pwd=fpw@lu,win,iis@2021C')
+ # Driver = '{ODBC Driver 17 for SQL Server}'
+ Server = '34.121.71.79,1433' if Server == '' else Server
+ # Database = 'gst_staging' if Database == '' else Database
+ Database = 'cibil_staging' if Database == '' else Database
+ uid='cet' if uid == '' else uid
+ pwd='fpw@lu,win,iis@2021C' if pwd == '' else pwd
+
+ self.myDB = pypyodbc.connect(Driver=self.Driver,Server=Server,Database=Database,uid=uid,pwd=pwd)
+ return self.myDB
+
+ def getDBConnectionString():
+ connStr = urllib.parse.quote_plus('Driver={ODBC Driver 17 for SQL Server};Server=34.121.71.79,1433;Database=cibil_staging;uid=cet;pwd=fpw@lu,win,iis@2021C;')
+ connStr = "mssql+pyodbc:///?odbc_connect=%s" % connStr
+ return connStr
+
+ def __del__(self):
+ print('DbService destructor called')
+ # self.myDB.close()
+
\ No newline at end of file
diff --git a/services/sftp-config-alt.json b/services/sftp-config-alt.json
new file mode 100644
index 0000000..411b909
--- /dev/null
+++ b/services/sftp-config-alt.json
@@ -0,0 +1,45 @@
+{
+ // The tab key will cycle through the settings when first created
+ // Visit https://codexns.io/products/sftp_for_subime/settings for help
+
+ // sftp, ftp or ftps
+ "type": "sftp",
+
+ "save_before_upload": true,
+ "upload_on_save": false,
+ "sync_down_on_open": false,
+ "sync_skip_deletes": false,
+ "sync_same_age": true,
+ "confirm_downloads": false,
+ "confirm_sync": true,
+ "confirm_overwrite_newer": false,
+
+ "host": "example.com",
+ "user": "username",
+ //"password": "password",
+ //"port": "22",
+
+ "remote_path": "/example/path/",
+ "ignore_regexes": [
+ "\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json",
+ "sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git/",
+ "\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini"
+ ],
+ //"file_permissions": "664",
+ //"dir_permissions": "775",
+
+ //"extra_list_connections": 0,
+
+ "connect_timeout": 30,
+ //"keepalive": 120,
+ //"ftp_passive_mode": true,
+ //"ftp_obey_passive_host": false,
+ //"ssh_key_file": "~/.ssh/id_rsa",
+ //"sftp_flags": ["-F", "/path/to/ssh_config"],
+
+ //"preserve_modification_times": false,
+ //"remote_time_offset_in_hours": 0,
+ //"remote_encoding": "utf-8",
+ //"remote_locale": "C",
+ //"allow_config_upload": false,
+}
diff --git a/services/sftp-config.json b/services/sftp-config.json
new file mode 100644
index 0000000..411b909
--- /dev/null
+++ b/services/sftp-config.json
@@ -0,0 +1,45 @@
+{
+ // The tab key will cycle through the settings when first created
+ // Visit https://codexns.io/products/sftp_for_subime/settings for help
+
+ // sftp, ftp or ftps
+ "type": "sftp",
+
+ "save_before_upload": true,
+ "upload_on_save": false,
+ "sync_down_on_open": false,
+ "sync_skip_deletes": false,
+ "sync_same_age": true,
+ "confirm_downloads": false,
+ "confirm_sync": true,
+ "confirm_overwrite_newer": false,
+
+ "host": "example.com",
+ "user": "username",
+ //"password": "password",
+ //"port": "22",
+
+ "remote_path": "/example/path/",
+ "ignore_regexes": [
+ "\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json",
+ "sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git/",
+ "\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini"
+ ],
+ //"file_permissions": "664",
+ //"dir_permissions": "775",
+
+ //"extra_list_connections": 0,
+
+ "connect_timeout": 30,
+ //"keepalive": 120,
+ //"ftp_passive_mode": true,
+ //"ftp_obey_passive_host": false,
+ //"ssh_key_file": "~/.ssh/id_rsa",
+ //"sftp_flags": ["-F", "/path/to/ssh_config"],
+
+ //"preserve_modification_times": false,
+ //"remote_time_offset_in_hours": 0,
+ //"remote_encoding": "utf-8",
+ //"remote_locale": "C",
+ //"allow_config_upload": false,
+}
diff --git a/services/utilityservices.py b/services/utilityservices.py
new file mode 100644
index 0000000..4d11cad
--- /dev/null
+++ b/services/utilityservices.py
@@ -0,0 +1,11 @@
+# from flask import Blueprint
+
+# utility_blueprint = Blueprint('utility_blueprint', __name__)
+
+def sendRestResponse(datastatus = 200,data = {'msg':'Data Not available...!'}):
+ print('sendRestResponse called')
+ return {'datastatus' : datastatus, 'data' : data}
+
+
+
+
\ No newline at end of file
diff --git a/templates/about.html b/templates/about.html
new file mode 100644
index 0000000..272d47e
--- /dev/null
+++ b/templates/about.html
@@ -0,0 +1,7 @@
+
+Hello from Flask
+{% if name %}
+ Hello Mr {{ name }}!, You're a Fraud
+{% else %}
+ Hello, Mr Anonomys!
+{% endif %}
\ No newline at end of file
diff --git a/templates/dataframe.html b/templates/dataframe.html
new file mode 100644
index 0000000..f00aa63
--- /dev/null
+++ b/templates/dataframe.html
@@ -0,0 +1,14 @@
+
+
+
+
+ Title
+
+
+
+{% for table in tables %}
+ {{titles[0]}}
+ {{ table|safe }}
+{% endfor %}
+
+
\ No newline at end of file